From 16adf49620e327feefd9c4087ea175f0759e4258 Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@nbd.name>
Date: Sun, 20 Nov 2016 20:07:18 +0100
Subject: [PATCH] lantiq: remove device specific sysupgrade image checks

Replaced by image metadata

Signed-off-by: Felix Fietkau <nbd@nbd.name>
---
 .../lantiq/base-files/lib/upgrade/platform.sh | 23 +------------------
 1 file changed, 1 insertion(+), 22 deletions(-)

diff --git a/target/linux/lantiq/base-files/lib/upgrade/platform.sh b/target/linux/lantiq/base-files/lib/upgrade/platform.sh
index 75a41c9242..d4db8d2bf7 100755
--- a/target/linux/lantiq/base-files/lib/upgrade/platform.sh
+++ b/target/linux/lantiq/base-files/lib/upgrade/platform.sh
@@ -4,28 +4,7 @@ PART_NAME=firmware
 REQUIRE_IMAGE_METADATA=1
 
 platform_check_image() {
-	[ "$#" -gt 1 ] && return 1
-	local board=$(lantiq_board_name)
-
-	case "$board" in
-		BTHOMEHUBV2B|BTHOMEHUBV3A|BTHOMEHUBV5A|P2812HNUF* )
-			nand_do_platform_check $board $1
-			return $?;
-			;;
-	esac
-
-	case "$(get_magic_word "$1")" in
-		# uImage
-		2705) return 0;;
-		# AVM
-		8112) return 0;;
-		# tplink
-		0200) return 0;;
-		*)
-			echo "Invalid image type"
-			return 1
-		;;
-	esac
+	return 0
 }
 
 platform_pre_upgrade() {
-- 
GitLab