ramips: add support for dir810l and asus rp-n53
[openwrt/openwrt.git] / target / linux / ramips / base-files / lib / ramips.sh
index 99bdbdd80e754700cadba76a0261138146bbcc2e..3ec44d2fffc2b942191c6508131dd90bb0a8825b 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
@@ -60,6 +46,9 @@ ramips_board_detect() {
        *"Argus ATP-52B")
                name="argus-atp52b"
                ;;
+       *"AsiaRF AWM002-EVB")
+               name="awm002-evb"
+               ;;
        *"BR6524N")
                name="br6524n"
                ;;
@@ -99,12 +88,18 @@ ramips_board_detect() {
        *"DIR-645")
                name="dir-645"
                ;;
+       *"DIR-810L")
+               name="dir-810l"
+               ;;
        *"DAP-1350")
                name="dap-1350"
                ;;
        *"ESR-9753")
                name="esr-9753"
                ;;
+       *"F7C027")
+               name="f7c027"
+               ;;
        *"F5D8235 v1")
                name="f5d8235-v1"
                ;;
@@ -126,6 +121,12 @@ 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"
                ;;
@@ -150,9 +151,27 @@ ramips_board_detect() {
        *"Planex MZK-W300NH2"*)
                name="mzk-w300nh2"
                ;;
+       *"Poray IP2202")
+               name="ip2202"
+               ;;
+       *"Poray M3")
+               name="m3"
+               ;;
+       *"Poray M4")
+               name="m4"
+               ;;
+       *"Poray X5")
+               name="x5"
+               ;;
+       *"Poray X8")
+               name="x8"
+               ;;
        *"PWH2004")
                name="pwh2004"
                ;;
+       *"Asus RP-N53")
+               name="rp-n53"
+               ;;
        *"RT-G32 B1")
                name="rt-g32-b1"
                ;;
@@ -225,17 +244,14 @@ ramips_board_detect() {
        *"XDX RN502J")
                name="xdxrn502j"
                ;;
+       *"HG255D")
+               name="hg255d"
+               ;;
        *)
                name="generic"
                ;;
        esac
 
-       case "$machine" in
-       *"Allnet ALL500"[23]*)
-               all500x_board_detect
-               ;;
-       esac
-
        [ -z "$RAMIPS_BOARD_NAME" ] && RAMIPS_BOARD_NAME="$name"
        [ -z "$RAMIPS_MODEL" ] && RAMIPS_MODEL="$machine"