diff options
author | John Crispin <blogic@openwrt.org> | 2014-06-26 11:49:47 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-06-26 11:49:47 +0000 |
commit | 9582177d943090346a50491040446b0bc5fc9d8c (patch) | |
tree | 38f56576ef7a27901412d678c855938f3feea96a /target/linux/ar71xx/base-files/lib/ar71xx.sh | |
parent | e327858613b4d83b5873a372ef669f1f78782a9a (diff) | |
download | upstream-9582177d943090346a50491040446b0bc5fc9d8c.tar.gz upstream-9582177d943090346a50491040446b0bc5fc9d8c.tar.bz2 upstream-9582177d943090346a50491040446b0bc5fc9d8c.zip |
ar71xx: add support for EasyLink M150 and M-mini
v3 refreshes the patch on trunk@41337
This patch adds support for the EasyLink EL-M150 and M-mini
http://wiki.openwrt.org/toh/easylink/el-m150
http://wiki.openwrt.org/toh/easylink/el-m-mini
Signed-off-by: L. D. Pinney <ldpinney@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41348 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/lib/ar71xx.sh')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 6dd5e62175..4656ac279e 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -91,6 +91,12 @@ tplink_board_detect() { hwver="v${hwver#0}" case "$hwid" in + "015000"*) + model="EasyLink EL-M150" + ;; + "015300"*) + model="EasyLink EL-MINI" + ;; "3C0001"*) model="OOLITE" ;; @@ -307,6 +313,12 @@ ar71xx_board_detect() { *EAP7660D) name="eap7660d" ;; + *EL-M150) + name="el-m150" + ;; + *EL-MINI) + name="el-mini" + ;; *JA76PF) name="ja76pf" ;; |