blob: d446777c02c12e7c24894a7fa4310e1a95f7b868 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
#
# Copyright (C) 2012 OpenWrt.org
#
cns3xxx_board_name() {
local machine
local name
machine=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /Hardware/ {print $2}' /proc/cpuinfo)
case "$machine" in
"Gateworks Corporation Laguna"*)
name="laguna"
;;
*)
name="generic";
;;
esac
echo $name
}
|