ar71xx/sysupgrade: use $magic_long instead of $magic when comparing with a 32-bit value
Aparently $magic_long was meant here instead of $magic when comparing with 32-bit values. Signed-off-by: Daniel Golle <dgolle@allnet.de> SVN-Revision: 28678
This commit is contained in:
parent
fd0e6e1452
commit
39b3bfcf6a
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Copyright (C) 2009 OpenWrt.org
|
# Copyright (C) 2011 OpenWrt.org
|
||||||
#
|
#
|
||||||
|
|
||||||
. /lib/ar71xx.sh
|
. /lib/ar71xx.sh
|
||||||
|
@ -70,7 +70,7 @@ platform_check_image() {
|
||||||
|
|
||||||
case "$board" in
|
case "$board" in
|
||||||
ap121 | ap121-mini | ap96 | db120 | zcn-1523h-2 | zcn-1523h-5)
|
ap121 | ap121-mini | ap96 | db120 | zcn-1523h-2 | zcn-1523h-5)
|
||||||
[ "$magic" != "68737173" -a "$magic" != "19852003" ] && {
|
[ "$magic_long" != "68737173" -a "$magic_long" != "19852003" ] && {
|
||||||
echo "Invalid image type."
|
echo "Invalid image type."
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue