ar71xx: fix sysupgrade on PB42/PB44 boards
SVN-Revision: 29613
This commit is contained in:
parent
723d8dd74f
commit
c6ee919b2a
1 changed files with 4 additions and 2 deletions
|
@ -15,7 +15,7 @@ platform_find_partitions() {
|
||||||
while read dev size erasesize name; do
|
while read dev size erasesize name; do
|
||||||
name=${name#'"'}; name=${name%'"'}
|
name=${name#'"'}; name=${name%'"'}
|
||||||
case "$name" in
|
case "$name" in
|
||||||
vmlinux.bin.l7|kernel|linux|rootfs)
|
vmlinux.bin.l7|vmlinux|kernel|linux|rootfs)
|
||||||
if [ -z "$first" ]; then
|
if [ -z "$first" ]; then
|
||||||
first="$name"
|
first="$name"
|
||||||
else
|
else
|
||||||
|
@ -31,7 +31,7 @@ platform_find_kernelpart() {
|
||||||
local part
|
local part
|
||||||
for part in "${1%:*}" "${1#*:}"; do
|
for part in "${1%:*}" "${1#*:}"; do
|
||||||
case "$part" in
|
case "$part" in
|
||||||
vmlinux.bin.l7|kernel|linux)
|
vmlinux.bin.l7|vmlinux|kernel|linux)
|
||||||
echo "$part"
|
echo "$part"
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
|
@ -199,6 +199,8 @@ platform_do_upgrade() {
|
||||||
routerstation-pro | \
|
routerstation-pro | \
|
||||||
ls-sr71 | \
|
ls-sr71 | \
|
||||||
eap7660d | \
|
eap7660d | \
|
||||||
|
pb42 | \
|
||||||
|
pb44 | \
|
||||||
ja76pf)
|
ja76pf)
|
||||||
platform_do_upgrade_combined "$ARGV"
|
platform_do_upgrade_combined "$ARGV"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue