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:48:49 -0600 |
commit | 4492f32c7932a868fd4d232b24cd48427865d7ed (patch) | |
tree | c133f5978ecf93e89d7720339e8d41a59f3f3154 /target/linux/ar71xx/generic | |
parent | fee8b58d42c5b155d91929a2148033eac0b26018 (diff) | |
download | master-187ad058-4492f32c7932a868fd4d232b24cd48427865d7ed.tar.gz master-187ad058-4492f32c7932a868fd4d232b24cd48427865d7ed.tar.bz2 master-187ad058-4492f32c7932a868fd4d232b24cd48427865d7ed.zip |
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/generic')
-rw-r--r-- | target/linux/ar71xx/generic/profiles/linksys.mk | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target/linux/ar71xx/generic/profiles/linksys.mk b/target/linux/ar71xx/generic/profiles/linksys.mk index bedf3a3d49..973eb6e24a 100644 --- a/target/linux/ar71xx/generic/profiles/linksys.mk +++ b/target/linux/ar71xx/generic/profiles/linksys.mk @@ -14,6 +14,15 @@ define Profile/WRT160NL/Description Package set optimized for the Linksys WRT160NL. endef +define Profile/E2100L + NAME:=Linksys E2100L + PACKAGES:=kmod-usb-core kmod-usb2 +endef + +define Profile/E2100L/Description + Package set optimized for the Linksys E2100L +endef + define Profile/WRT400N NAME:=Linksys WRT400N PACKAGES:= @@ -24,4 +33,5 @@ define Profile/WRT400N/Description endef $(eval $(call Profile,WRT160NL)) +$(eval $(call Profile,E2100L)) $(eval $(call Profile,WRT400N)) |