ar71xx: fix sysupgrade for wnr2200

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

Backport of r48005

git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@48093 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Felix Fietkau 2016-01-03 15:12:07 +00:00
parent a5db0b71c6
commit 841bc90528
1 changed files with 8 additions and 1 deletions

View File

@ -447,13 +447,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