backfire: ar71xx: add support for the WNDR3700v2 board (backport of r25118)
[openwrt-10.03/.git] / target / linux / ar71xx / base-files / lib / upgrade / platform.sh
index 1076bdea8cef997ab257450b011e3dd9edd2574e..67f404808638bdeb90dbb981c5fad82b54b8fb8d 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
                }