ar71xx: add support for the WNDR3700v2 board
[openwrt/openwrt.git] / target / linux / ar71xx / base-files / lib / upgrade / platform.sh
index 0b867c0052335df0be9f945ec27a0beeb17bc9c2..067fe033fa852c34c75c216fb9100e7eccc221d5 100755 (executable)
@@ -64,6 +64,7 @@ platform_do_upgrade_combined() {
 platform_check_image() {
        local board=$(ar71xx_board_name)
        local magic="$(get_magic_word "$1")"
+       local magic_long="$(get_magic_long "$1")"
 
        [ "$ARGC" -gt 1 ] && return 1
 
@@ -83,7 +84,14 @@ platform_check_image() {
                return 0
                ;;
        wndr3700)
-               [ "$magic" != "3337" ] && {
+               [ "$magic_long" != "33373030" ] && {
+                       echo "Invalid image type."
+                       return 1
+               }
+               return 0
+               ;;
+       wndr3700v2)
+               [ "$magic_long" != "33373031" ] && {
                        echo "Invalid image type."
                        return 1
                }