add sysupgrade support for ar360w3g
authorJo-Philipp Wich <jow@openwrt.org>
Wed, 24 Dec 2008 22:16:04 +0000 (22:16 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Wed, 24 Dec 2008 22:16:04 +0000 (22:16 +0000)
SVN-Revision: 13741

target/linux/rdc/base-files/lib/upgrade/platform.sh [new file with mode: 0644]

diff --git a/target/linux/rdc/base-files/lib/upgrade/platform.sh b/target/linux/rdc/base-files/lib/upgrade/platform.sh
new file mode 100644 (file)
index 0000000..6e4a7df
--- /dev/null
@@ -0,0 +1,16 @@
+PART_NAME=linux
+
+platform_check_image() {
+       [ "$ARGC" -gt 1 ] && return 1
+
+       case "$(get_magic_word "$1")" in
+               # rdc .bin files for ar360w3g
+               474d) return 0;;
+               *)
+                       echo "Invalid image type. Please use an appropriate .bin file"
+                       return 1
+               ;;
+       esac
+}
+
+# use default for platform_do_upgrade()