mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
ramips: add diag support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20799 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
31
target/linux/ramips/base-files/lib/ramips.sh
Executable file
31
target/linux/ramips/base-files/lib/ramips.sh
Executable file
@@ -0,0 +1,31 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2010 OpenWrt.org
|
||||
#
|
||||
|
||||
ramips_board_name() {
|
||||
local machine
|
||||
local name
|
||||
|
||||
machine=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /machine/ {print $2}' /proc/cpuinfo)
|
||||
|
||||
case "$machine" in
|
||||
*"DIR-300 revB")
|
||||
name="dir-300-b1"
|
||||
;;
|
||||
*"La Fonera 2.0N")
|
||||
name="fonera20n"
|
||||
;;
|
||||
*"V22RW-2X2")
|
||||
name="v22rw-2x2"
|
||||
;;
|
||||
*"WHR-G300N")
|
||||
name="whr-g300n"
|
||||
;;
|
||||
*)
|
||||
name="generic"
|
||||
;;
|
||||
esac
|
||||
|
||||
echo $name
|
||||
}
|
||||
Reference in New Issue
Block a user