ar71xx: simplify TP-LINK model detection
authorJohn Crispin <blogic@openwrt.org>
Mon, 6 Oct 2014 04:53:20 +0000 (04:53 +0000)
committerJohn Crispin <blogic@openwrt.org>
Mon, 6 Oct 2014 04:53:20 +0000 (04:53 +0000)
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 <mschiffer@universe-factory.net>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42795 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar71xx/base-files/lib/ar71xx.sh

index 78d67fa..e4f780c 100755 (executable)
@@ -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"