e5bb1a1bc7
Signed-off-by: Tim Harvey <tharvey@gateworks.com> target/linux/cns3xxx/base-files/lib/cns3xxx.sh | 22 ++ target/linux/cns3xxx/base-files/lib/upgrade/platform.sh | 122 ++++++++++++++++ target/linux/cns3xxx/image/Makefile | 19 +- 3 files changed, 159 insertions(+), 4 deletions(-) SVN-Revision: 33650
23 lines
337 B
Bash
23 lines
337 B
Bash
#!/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
|
|
}
|