aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/base-files
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-10-19 19:44:26 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-10-19 19:44:26 +0000
commit1db3dfdf20a266825cfb63db17a505fad5284ead (patch)
treece5d161ed0da4b5188d01024c74b723384ed2c0f /target/linux/ramips/base-files
parent48604ea1e17df4781867762e8f4c54c49fba7aa6 (diff)
downloadupstream-1db3dfdf20a266825cfb63db17a505fad5284ead.tar.gz
upstream-1db3dfdf20a266825cfb63db17a505fad5284ead.tar.bz2
upstream-1db3dfdf20a266825cfb63db17a505fad5284ead.zip
AA: ramips: use get_magic_long in sysupgrade image check
Backport of r33842. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/branches/attitude_adjustment@33871 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/base-files')
-rwxr-xr-xtarget/linux/ramips/base-files/lib/upgrade/platform.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh b/target/linux/ramips/base-files/lib/upgrade/platform.sh
index 5ebf42a85d..2857599d0b 100755
--- a/target/linux/ramips/base-files/lib/upgrade/platform.sh
+++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh
@@ -9,7 +9,7 @@ RAMFS_COPY_DATA=/lib/ramips.sh
platform_check_image() {
local board=$(ramips_board_name)
- local magic="$(get_magic_word "$1")"
+ local magic="$(get_magic_long "$1")"
[ "$ARGC" -gt 1 ] && return 1
@@ -51,7 +51,7 @@ platform_check_image() {
whr-g300n |\
ur-336un |\
wr512-3gn)
- [ "$magic" != "2705" ] && {
+ [ "$magic" != "27051956" ] && {
echo "Invalid image type."
return 1
}