From 05777fb9470333974feb22775f16057c34c0ccf4 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Mon, 6 Oct 2014 04:53:20 +0000 Subject: [PATCH] ar71xx: simplify TP-LINK model detection All TP-LINK machine names begin with "TP-LINK", so there's no need to check for more specific model names. This also allows adding new models like the Archer series more easily. Signed-off-by: Matthias Schiffer SVN-Revision: 42795 --- target/linux/ar71xx/base-files/lib/ar71xx.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 78d67fae4d..e4f780c8d5 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -750,11 +750,7 @@ ar71xx_board_detect() { ;; esac - case "$machine" in - *TL-WR* | *TL-WA* | *TL-MR* | *TL-WD*) - tplink_board_detect "$machine" - ;; - esac + [ "${machine:0:8}" = 'TP-LINK ' ] && tplink_board_detect "$machine" [ -z "$name" ] && name="unknown" -- 2.30.2