diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-02-21 11:45:41 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-02-21 11:45:41 +0000 |
commit | ff20c0e1fc9dfabce2fbe00d8eac8a1df4ff9453 (patch) | |
tree | 91b3e1cb20ad06439ef5e665ccef226a0d09ffa3 /target | |
parent | 3010a0b6166c9c73ea9582b781d6e6e3c99635f5 (diff) | |
download | upstream-ff20c0e1fc9dfabce2fbe00d8eac8a1df4ff9453.tar.gz upstream-ff20c0e1fc9dfabce2fbe00d8eac8a1df4ff9453.tar.bz2 upstream-ff20c0e1fc9dfabce2fbe00d8eac8a1df4ff9453.zip |
bcm63xx: Fix sysupgrade for tag-version 7 and 8
Fix sysupgrade for tag-version 7 and 8.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
SVN-Revision: 35724
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/brcm63xx/base-files/lib/upgrade/platform.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/base-files/lib/upgrade/platform.sh b/target/linux/brcm63xx/base-files/lib/upgrade/platform.sh index 1a025f7d73..63ab77418c 100644 --- a/target/linux/brcm63xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/brcm63xx/base-files/lib/upgrade/platform.sh @@ -2,7 +2,7 @@ PART_NAME=linux platform_check_image() { [ "$ARGC" -gt 1 ] && return 1 case "$(get_magic_word "$1")" in - 3600) + 3600|3700|3800) # 6348GW-11 boards use openwrt-96348GW-11-squashfs-cfe.bin files return 0 ;; |