diff options
Diffstat (limited to 'target/linux/ar71xx/base-files/lib/ar71xx.sh')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 6 |
1 files changed, 1 insertions, 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" |