1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-18 21:48:23 +02:00

ar71xx: fix sysupgrade for wnr2200

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 48005
This commit is contained in:
Felix Fietkau 2015-12-23 23:42:18 +00:00
parent c75c8ab6a6
commit 5359183b7e

@ -479,13 +479,20 @@ platform_check_image() {
fi
return 0
;;
wnr2000-v4)
wnr2000-v4)
[ "$magic_long" != "32303034" ] && {
echo "Invalid image type."
return 1
}
return 0
;;
wnr2200)
[ "$magic_long" != "32323030" ] && {
echo "Invalid image type."
return 1
}
return 0
;;
esac