kirkwood: use image metadata
[openwrt/staging/wigyori.git] / target / linux / kirkwood / base-files / lib / upgrade / platform.sh
index b28ee873b30cc32288b5f32ce87fcae1cf0929ed..dd06aa7f2258a718a324676aa4844f5eb5a377e8 100644 (file)
@@ -1,27 +1,9 @@
 RAMFS_COPY_BIN='fw_printenv fw_setenv'
 RAMFS_COPY_DATA='/etc/fw_env.config /var/lock/fw_printenv.lock'
 
-platform_check_image() {
-       [ "$#" -gt 1 ] && return 1
-       local board="$(board_name)"
-       local magic="$(get_magic_long "$1")"
+REQUIRE_IMAGE_METADATA=1
 
-       case "$board" in
-       "linksys-audi"|\
-       "linksys-viper")
-               [ "$magic" != "27051956" -a "$magic" != "73797375" ] && {
-                       echo "Invalid image type."
-                       return 1
-               }
-               return 0
-               ;;
-       *)
-               nand_do_platform_check $board $1
-               return $?
-               ;;
-       esac
-
-       echo "Sysupgrade is not yet supported on $board."
+platform_check_image() {
        return 1
 }