diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-05-17 16:53:57 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-05-17 16:53:57 +0000 |
commit | d30d9400c0c12649a99f9036faac696f7023b910 (patch) | |
tree | 5b1c8c1a5cc46934ce4941e13308226e183f9b83 /target/linux/brcm63xx/base-files/lib/upgrade | |
parent | 0a0bddcf31d5acb80bc1e55f06aaba12f0d60a8c (diff) | |
download | upstream-d30d9400c0c12649a99f9036faac696f7023b910.tar.gz upstream-d30d9400c0c12649a99f9036faac696f7023b910.tar.bz2 upstream-d30d9400c0c12649a99f9036faac696f7023b910.zip |
[brcm63xx] add support for sysupgrade (#5117)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15900 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/base-files/lib/upgrade')
-rw-r--r-- | target/linux/brcm63xx/base-files/lib/upgrade/platform.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/base-files/lib/upgrade/platform.sh b/target/linux/brcm63xx/base-files/lib/upgrade/platform.sh new file mode 100644 index 0000000000..1a025f7d73 --- /dev/null +++ b/target/linux/brcm63xx/base-files/lib/upgrade/platform.sh @@ -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() |