add support for sysupgrade (#5117)

SVN-Revision: 15900
This commit is contained in:
Florian Fainelli
2009-05-17 16:53:57 +00:00
parent ee48f5ae78
commit 0d7f5f8d2c
2 changed files with 24 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
PART_NAME=linux
platform_check_image() {
[ "$ARGC" -gt 1 ] && return 1
case "$(get_magic_word "$1")" in
3600)
# 6348GW-11 boards use openwrt-96348GW-11-squashfs-cfe.bin files
return 0
;;
*)
echo "Invalid image type. Please use only .bin files"
return 1
;;
esac
}
# use default for platform_do_upgrade()