summaryrefslogtreecommitdiff
path: root/target/linux
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2011-07-03 15:01:56 +0000
committerGabor Juhos <juhosg@openwrt.org>2011-07-03 15:01:56 +0000
commit521e495f4bd2315f12b2dfc4b690e57b1f0fee6e (patch)
tree4b7b29605e0b7bf49faf2378822a6b235d163587 /target/linux
parent6f54df889af09536edb4e461c51149243dc9483a (diff)
downloadmtk-20170518-521e495f4bd2315f12b2dfc4b690e57b1f0fee6e.zip
mtk-20170518-521e495f4bd2315f12b2dfc4b690e57b1f0fee6e.tar.gz
mtk-20170518-521e495f4bd2315f12b2dfc4b690e57b1f0fee6e.tar.bz2
ramips: add all supported boards to lib/ramips.sh
SVN-Revision: 27389
Diffstat (limited to 'target/linux')
-rwxr-xr-xtarget/linux/ramips/base-files/lib/ramips.sh25
1 files changed, 20 insertions, 5 deletions
diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh
index 8c64d6a..9e3e442 100755
--- a/target/linux/ramips/base-files/lib/ramips.sh
+++ b/target/linux/ramips/base-files/lib/ramips.sh
@@ -10,23 +10,38 @@ ramips_board_name() {
machine=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /machine/ {print $2}' /proc/cpuinfo)
case "$machine" in
+ *"Aztech HW550-3G")
+ name="hw550-3g"
+ ;;
*"DIR-300 revB")
name="dir-300-b1"
;;
+ *"F5D8235 v2")
+ name="f5d8235-v2"
+ ;;
*"La Fonera 2.0N")
name="fonera20n"
;;
+ *"MoFi Network MOFI3500-3GN")
+ name="mofi3500-3gn"
+ ;;
+ *"PWH2004")
+ name="pwh2004"
+ ;;
+ *"RT-N15")
+ name="rt-n15"
+ ;;
+ *"WCR-150GN")
+ name="wcr-150gn"
+ ;;
*"V22RW-2X2")
name="v22rw-2x2"
;;
*"WHR-G300N")
name="whr-g300n"
;;
- *"Aztech HW550-3G")
- name="hw550-3g"
- ;;
- *"MoFi Network MOFI3500-3GN")
- name="mofi3500-3gn"
+ *"WZR-AGL300NH")
+ name="wzr-agl300nh"
;;
*)
name="generic"