summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2011-12-27 16:57:01 +0000
committerGabor Juhos <juhosg@openwrt.org>2011-12-27 16:57:01 +0000
commitc6ee919b2a2565d363556296f2347031fccc3de9 (patch)
tree695754332022a6414c4173a8a731ae297ab73e99 /target/linux/ar71xx
parent723d8dd74fdcb14465acc5ef5956020054ff9642 (diff)
downloadmaster-31e0f0ae-c6ee919b2a2565d363556296f2347031fccc3de9.tar.gz
master-31e0f0ae-c6ee919b2a2565d363556296f2347031fccc3de9.tar.bz2
master-31e0f0ae-c6ee919b2a2565d363556296f2347031fccc3de9.zip
ar71xx: fix sysupgrade on PB42/PB44 boards
SVN-Revision: 29613
Diffstat (limited to 'target/linux/ar71xx')
-rwxr-xr-xtarget/linux/ar71xx/base-files/lib/upgrade/platform.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
index 324edfba91..837846193d 100755
--- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
+++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
@@ -15,7 +15,7 @@ platform_find_partitions() {
while read dev size erasesize name; do
name=${name#'"'}; name=${name%'"'}
case "$name" in
- vmlinux.bin.l7|kernel|linux|rootfs)
+ vmlinux.bin.l7|vmlinux|kernel|linux|rootfs)
if [ -z "$first" ]; then
first="$name"
else
@@ -31,7 +31,7 @@ platform_find_kernelpart() {
local part
for part in "${1%:*}" "${1#*:}"; do
case "$part" in
- vmlinux.bin.l7|kernel|linux)
+ vmlinux.bin.l7|vmlinux|kernel|linux)
echo "$part"
break
;;
@@ -199,6 +199,8 @@ platform_do_upgrade() {
routerstation-pro | \
ls-sr71 | \
eap7660d | \
+ pb42 | \
+ pb44 | \
ja76pf)
platform_do_upgrade_combined "$ARGV"
;;