ramips: add Poray M4 4M/8M support
[openwrt/openwrt.git] / target / linux / ramips / base-files / lib / ramips.sh
index c89dd469a71600f0e34e66d480481de29dfe6861..e3776f1304d2d641f088820d5d09d90dad0b4034 100755 (executable)
@@ -6,20 +6,6 @@
 RAMIPS_BOARD_NAME=
 RAMIPS_MODEL=
 
-all500x_board_detect() {
-       local systype
-
-       systype=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /system type/ {print $2}' /proc/cpuinfo)
-       case "$systype" in
-       *"RT5350"*)
-               RAMIPS_MODEL="Allnet ALL5003"
-               ;;
-       *"RT3352"*)
-               RAMIPS_MODEL="Allnet ALL5002"
-               ;;
-       esac
-}
-
 ramips_board_detect() {
        local machine
        local name
@@ -48,15 +34,21 @@ ramips_board_detect() {
        *"Allnet ALL0256N")
                name="all0256n"
                ;;
-       *"Allnet ALL5002/ALL5003")
+       *"Allnet ALL5002")
                name="all5002"
                ;;
+       *"Allnet ALL5003")
+               name="all5003"
+               ;;
        *"ARC FreeStation5")
                name="freestation5"
                ;;
        *"Argus ATP-52B")
                name="argus-atp52b"
                ;;
+       *"AsiaRF AWM002-EVB")
+               name="awm002-evb"
+               ;;
        *"BR6524N")
                name="br6524n"
                ;;
@@ -66,6 +58,9 @@ ramips_board_detect() {
        *"Asus WL-330N3G")
                name="wl-330n3g"
                ;;
+       *"Alpha ASL26555")
+               name="asl26555"
+               ;;
        *"Aztech HW550-3G")
                name="hw550-3g"
                ;;
@@ -81,6 +76,9 @@ ramips_board_detect() {
        *"DIR-620 A1")
                name="dir-620-a1"
                ;;
+       *"DIR-620 D1")
+               name="dir-620-d1"
+               ;;
        *"DIR-615 H1")
                name="dir-615-h1"
                ;;
@@ -96,6 +94,9 @@ ramips_board_detect() {
        *"ESR-9753")
                name="esr-9753"
                ;;
+       *"F7C027")
+               name="f7c027"
+               ;;
        *"F5D8235 v1")
                name="f5d8235-v1"
                ;;
@@ -117,9 +118,18 @@ ramips_board_detect() {
        *"MoFi Network MOFI3500-3GN")
                name="mofi3500-3gn"
                ;;
+       *"HAME MPR-A1")
+               name="mpr-a1"
+               ;;
+       *"HAME MPR-A2")
+               name="mpr-a2"
+               ;;
        *"NBG-419N")
                name="nbg-419n"
                ;;
+       *"Netgear WNCE2001")
+               name="wnce2001"
+               ;;
        *"NexAira BC2")
                name="bc2"
                ;;
@@ -138,6 +148,12 @@ ramips_board_detect() {
        *"Planex MZK-W300NH2"*)
                name="mzk-w300nh2"
                ;;
+       *"Poray M3")
+               name="m3"
+               ;;
+       *"Poray M4")
+               name="m4"
+               ;;
        *"PWH2004")
                name="pwh2004"
                ;;
@@ -203,7 +219,7 @@ ramips_board_detect() {
                ;;
        *"UR-326N4G Wireless N router")
                name="ur-326n4g"
-               ;;
+               ;;
        *"UR-336UN Wireless N router")
                name="ur-336un"
                ;;
@@ -213,17 +229,14 @@ ramips_board_detect() {
        *"XDX RN502J")
                name="xdxrn502j"
                ;;
+       *"HG255D")
+               name="hg255d"
+               ;;
        *)
                name="generic"
                ;;
        esac
 
-       case "$machine" in
-       *"Allnet ALL5002/ALL5003")
-               all500x_board_detect
-               ;;
-       esac
-
        [ -z "$RAMIPS_BOARD_NAME" ] && RAMIPS_BOARD_NAME="$name"
        [ -z "$RAMIPS_MODEL" ] && RAMIPS_MODEL="$machine"