mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:57:31 +02:00
26 lines
316 B
Bash
26 lines
316 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2010 OpenWrt.org
|
||
|
#
|
||
|
|
||
|
get_board_name() {
|
||
|
local hardware
|
||
|
local name
|
||
|
|
||
|
hardware=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /Hardware/ {print $2}' /proc/cpuinfo)
|
||
|
|
||
|
case "$hardware" in
|
||
|
*NSB3AST)
|
||
|
name="nsb3ast"
|
||
|
;;
|
||
|
"NS-K330 NAS")
|
||
|
name="ns-k330"
|
||
|
;;
|
||
|
*)
|
||
|
name="generic"
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
echo $name
|
||
|
}
|