ar71xx: Buffalo WLAE-AG300N initial support
[openwrt/openwrt.git] / target / linux / ar71xx / base-files / lib / upgrade / platform.sh
index c2bfa08dbbe432c4f0fc7f7c93125955b77fdb7d..0e086039c524c7c21df65211538b4ccad292566a 100755 (executable)
@@ -15,7 +15,7 @@ platform_find_partitions() {
        while read dev size erasesize name; do
                name=${name#'"'}; name=${name%'"'}
                case "$name" in
-                       vmlinux.bin.l7|vmlinux|kernel|linux|rootfs)
+                       vmlinux.bin.l7|vmlinux|kernel|linux|rootfs|filesystem)
                                if [ -z "$first" ]; then
                                        first="$name"
                                else
@@ -77,9 +77,12 @@ platform_check_image() {
                platform_check_image_all0258n "$1" && return 0
                return 1
                ;;
+       alfa-ap96 | \
        alfa-nx | \
+       ap113 | \
        ap121 | \
        ap121-mini | \
+       ap136 | \
        ap96 | \
        db120 | \
        hornet-ub | \
@@ -91,19 +94,23 @@ platform_check_image() {
                }
                return 0
                ;;
+       ew-dorin | \
        ap81 | \
        ap83 | \
        dir-600-a1 | \
        dir-615-c1 | \
+       dir-615-e4 | \
        dir-825-b1 | \
        mzk-w04nu | \
        mzk-w300nh | \
        tew-632brp | \
+       tew-673gru | \
        wrt400n | \
        airrouter | \
        bullet-m | \
        nanostation-m | \
        rocket-m | \
+       rw2458n | \
        wzr-hp-g300nh2 | \
        wzr-hp-g300nh | \
        wzr-hp-g450h | \
@@ -111,6 +118,7 @@ platform_check_image() {
        whr-g301n | \
        whr-hp-g300n | \
        whr-hp-gn | \
+       wlae-ag300n | \
        nbg460n_550n_550nh | \
        unifi )
                [ "$magic" != "2705" ] && {
@@ -119,17 +127,27 @@ platform_check_image() {
                }
                return 0
                ;;
+       om2p | \
+       om2p-lc)
+               platform_check_image_om2p "$magic_long" "$1" && return 0
+               return 1
+               ;;
+       tl-mr11u | \
        tl-mr3020 | \
        tl-mr3220 | \
        tl-mr3420 | \
        tl-wa901nd | \
        tl-wa901nd-v2 | \
+       tl-wdr4300 | \
        tl-wr703n | \
        tl-wr741nd | \
        tl-wr741nd-v4 | \
        tl-wr841n-v1 | \
+       tl-wr841n-v7 | \
        tl-wr941nd | \
-       tl-wr1043nd)
+       tl-wr1041n-v2 | \
+       tl-wr1043nd | \
+       tl-wr2543n)
                [ "$magic" != "0100" ] && {
                        echo "Invalid image type."
                        return 1
@@ -171,7 +189,8 @@ platform_check_image() {
        pb42 | \
        pb44 | \
        eap7660d | \
-       ja76pf )
+       ja76pf | \
+       ja76pf2)
                [ "$magic" != "4349" ] && {
                        echo "Invalid image. Use *-sysupgrade.bin files on this board"
                        return 1
@@ -204,12 +223,17 @@ platform_do_upgrade() {
        eap7660d | \
        pb42 | \
        pb44 | \
-       ja76pf)
+       ja76pf | \
+       ja76pf2)
                platform_do_upgrade_combined "$ARGV"
                ;;
        all0258n )
                platform_do_upgrade_all0258n "$ARGV"
                ;;
+       om2p | \
+       om2p-lc)
+               platform_do_upgrade_om2p "$ARGV"
+               ;;
        *)
                default_do_upgrade "$ARGV"
                ;;