diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-10-30 13:06:30 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-10-30 13:06:30 +0000 |
commit | 39b3bfcf6a8419a13d4ba78923bd138b43ac8267 (patch) | |
tree | 3be27a31b9be3efdc404a62cadb88e4c27a08a5c | |
parent | fd0e6e1452b994565871f1675e0b59529bdefb0f (diff) | |
download | upstream-39b3bfcf6a8419a13d4ba78923bd138b43ac8267.tar.gz upstream-39b3bfcf6a8419a13d4ba78923bd138b43ac8267.tar.bz2 upstream-39b3bfcf6a8419a13d4ba78923bd138b43ac8267.zip |
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
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/upgrade/platform.sh | 4 |
1 files changed, 2 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 e7c755c0ce..f20264f78a 100755 --- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh @@ -1,5 +1,5 @@ # -# Copyright (C) 2009 OpenWrt.org +# Copyright (C) 2011 OpenWrt.org # . /lib/ar71xx.sh @@ -70,7 +70,7 @@ platform_check_image() { case "$board" in 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." return 1 } |