diff options
author | Gad Krumholz <gad.krumholz@gmail.com> | 2016-11-27 00:52:53 -0600 |
---|---|---|
committer | Gad Krumholz <gad.krumholz@gmail.com> | 2016-11-30 00:47:10 -0600 |
commit | d9740d24d767d583da08eeaa8bd7a01288fdc554 (patch) | |
tree | 5fda396bbe79871356ce3d25e2ed83ebcd3a0bfe /target/linux/ar71xx/base-files/lib | |
parent | 1b6dc2e48ce654a004a7d0b98d7070a515424595 (diff) | |
download | upstream-d9740d24d767d583da08eeaa8bd7a01288fdc554.tar.gz upstream-d9740d24d767d583da08eeaa8bd7a01288fdc554.tar.bz2 upstream-d9740d24d767d583da08eeaa8bd7a01288fdc554.zip |
CC: ar71xx: Added missing support for Linksys E2100L
It's based on the WRT160NL according to https://wiki.openwrt.org/toh/linksys/e2100l
Based on research done here: https://forum.openwrt.org/viewtopic.php?id=24244 and here: https://forum.openwrt.org/viewtopic.php?pid=120791#p120791 this patch was conceived.
Signed-off-by: Gad Krumholz <gad.krumholz@gmail.com>
Diffstat (limited to 'target/linux/ar71xx/base-files/lib')
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 3 | ||||
-rwxr-xr-x | target/linux/ar71xx/base-files/lib/upgrade/platform.sh | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index a9dca58847..1eb6999908 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -932,6 +932,9 @@ ar71xx_board_detect() { *WRT160NL) name="wrt160nl" ;; + *E2100L) + name="e2100l" + ;; *WRT400N) name="wrt400n" ;; diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh index 762cd760ce..fda7bc417c 100755 --- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh +++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh @@ -270,6 +270,7 @@ platform_check_image() { ;; mynet-rext|\ + e2100l|\ wrt160nl) cybertan_check_image "$1" && return 0 return 1 |