From 52e60df2599ddd20485440b1f96b0b987653d293 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 3 Jan 2016 15:12:07 +0000 Subject: [PATCH] ar71xx: fix sysupgrade for wnr2200 Signed-off-by: Felix Fietkau Backport of r48005 SVN-Revision: 48093 --- target/linux/ar71xx/base-files/lib/upgrade/platform.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh index ab69e4f8a1..8dea48f719 100755 --- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh @@ -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 -- 2.30.2