blob: 476f9be21de095c3cf8e0b65584b98319e5f8acb (
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
}
|