aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ixp4xx/base-files/lib/ixp4xx.sh
blob: f7a6b76edaf706798a166003652dfdb04ddf2558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
#
# Copyright (C) 2012 OpenWrt.org
#

ixp4xx_board_name() {
        local machine
        local name

        machine=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /Hardware/ {print $2}' /proc/cpuinfo)

        case "$machine" in
		"Gateworks Cambria"*)
			name="cambria"
			;;
		"Gateworks Avila"*)
			name="avila"
			;;
		*)
			name="generic";
			;;
	esac

	echo $name
}