mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 16:43:09 +02:00
ar71xx: fix sysupgrade for jjPlus JWAP003
[juhosg: change commit message] Signed-off-by: Artur Wronowski <arteqw@gmail.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33769 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
fb432034da
commit
c577fab9a2
@ -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|vmlinux|kernel|linux|rootfs|filesystem)
|
vmlinux.bin.l7|vmlinux|kernel|linux|linux.bin|rootfs|filesystem)
|
||||||
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|vmlinux|kernel|linux)
|
vmlinux.bin.l7|vmlinux|kernel|linux|linux.bin)
|
||||||
echo "$part"
|
echo "$part"
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
@ -200,7 +200,8 @@ platform_check_image() {
|
|||||||
all0305 | \
|
all0305 | \
|
||||||
eap7660d | \
|
eap7660d | \
|
||||||
ja76pf | \
|
ja76pf | \
|
||||||
ja76pf2)
|
ja76pf2 | \
|
||||||
|
jwap003)
|
||||||
[ "$magic" != "4349" ] && {
|
[ "$magic" != "4349" ] && {
|
||||||
echo "Invalid image. Use *-sysupgrade.bin files on this board"
|
echo "Invalid image. Use *-sysupgrade.bin files on this board"
|
||||||
return 1
|
return 1
|
||||||
@ -235,7 +236,8 @@ platform_do_upgrade() {
|
|||||||
pb42 | \
|
pb42 | \
|
||||||
pb44 | \
|
pb44 | \
|
||||||
ja76pf | \
|
ja76pf | \
|
||||||
ja76pf2)
|
ja76pf2 | \
|
||||||
|
jwap003)
|
||||||
platform_do_upgrade_combined "$ARGV"
|
platform_do_upgrade_combined "$ARGV"
|
||||||
;;
|
;;
|
||||||
all0258n )
|
all0258n )
|
||||||
|
Loading…
Reference in New Issue
Block a user