mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 14:07:30 +02:00
1a061108bc
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34113 3c298f89-4303-0410-b956-a3cf2f4a3e73
23 lines
309 B
Bash
23 lines
309 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
|
|
}
|