[OpenWrt-Devel] [PATCH 2/3] bcm53xx: add specific device profiles
Álvaro Fernández Rojas
noltari at gmail.com
Thu May 28 15:04:39 EDT 2015
Signed-off-by: Álvaro Fernández Rojas <noltari at gmail.com>
---
target/linux/bcm53xx/profiles/ASUS.mk | 43 ++++++++++++++++++++++++++++++
target/linux/bcm53xx/profiles/Buffalo.mk | 45 ++++++++++++++++++++++++++++++++
target/linux/bcm53xx/profiles/NETGEAR.mk | 36 +++++++++++++++++++++++++
target/linux/bcm53xx/profiles/SmartRG.mk | 16 ++++++++++++
4 files changed, 140 insertions(+)
create mode 100644 target/linux/bcm53xx/profiles/ASUS.mk
create mode 100644 target/linux/bcm53xx/profiles/Buffalo.mk
create mode 100644 target/linux/bcm53xx/profiles/NETGEAR.mk
create mode 100644 target/linux/bcm53xx/profiles/SmartRG.mk
diff --git a/target/linux/bcm53xx/profiles/ASUS.mk b/target/linux/bcm53xx/profiles/ASUS.mk
new file mode 100644
index 0000000..51aa412
--- /dev/null
+++ b/target/linux/bcm53xx/profiles/ASUS.mk
@@ -0,0 +1,43 @@
+#
+# Copyright (C) 2015 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+define Profile/asus-rt-ac56u
+ NAME:=ASUS RT-AC56U
+ PACKAGES:=kmod-b43 wpad-mini \
+ kmod-usb-ohci kmod-usb2
+endef
+define Profile/asus-rt-ac56u/Description
+ Package set optimized for ASUS RT-AC56U.
+endef
+$(eval $(call Profile,asus-rt-ac56u))
+
+define Profile/asus-rt-ac68u
+ NAME:=ASUS RT-AC68U
+ PACKAGES:=kmod-usb-ohci kmod-usb2
+endef
+define Profile/asus-rt-ac68u/Description
+ Package set optimized for ASUS RT-AC68U.
+endef
+$(eval $(call Profile,asus-rt-ac68u))
+
+define Profile/asus-rt-ac87u
+ NAME:=ASUS RT-AC87U
+ PACKAGES:=kmod-usb-ohci kmod-usb2
+endef
+define Profile/asus-rt-ac87u/Description
+ Package set optimized for ASUS RT-AC87U.
+endef
+$(eval $(call Profile,asus-rt-ac87u))
+
+define Profile/asus-rt-n18u
+ NAME:=ASUS RT-N18U
+ PACKAGES:=kmod-usb-ohci kmod-usb2
+endef
+define Profile/asus-rt-n18u/Description
+ Package set optimized for ASUS RT-N18U.
+endef
+$(eval $(call Profile,asus-rt-n18u))
diff --git a/target/linux/bcm53xx/profiles/Buffalo.mk b/target/linux/bcm53xx/profiles/Buffalo.mk
new file mode 100644
index 0000000..704eefd
--- /dev/null
+++ b/target/linux/bcm53xx/profiles/Buffalo.mk
@@ -0,0 +1,45 @@
+#
+# Copyright (C) 2015 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+define Profile/buffalo-wzr-600dhp2
+ NAME:=Buffalo WZR-600DHP2
+ PACKAGES:=kmod-b43 wpad-mini \
+ kmod-usb-ohci kmod-usb2
+endef
+define Profile/buffalo-wzr-600dhp2/Description
+ Package set optimized for Buffalo WZR-600DHP2.
+endef
+$(eval $(call Profile,buffalo-wzr-600dhp2))
+
+define Profile/buffalo-wzr-900dhp
+ NAME:=Buffalo WZR-900DHP
+ PACKAGES:=kmod-b43 wpad-mini \
+ kmod-usb-ohci kmod-usb2
+endef
+define Profile/buffalo-wzr-900dhp/Description
+ Package set optimized for Buffalo WZR-900DHP.
+endef
+$(eval $(call Profile,buffalo-wzr-900dhp))
+
+define Profile/buffalo-wzr-1750dhp
+ NAME:=Buffalo WZR-1750DHP
+ PACKAGES:=kmod-b43 wpad-mini \
+ kmod-usb-ohci kmod-usb2
+endef
+define Profile/buffalo-wzr-1750dhp/Description
+ Package set optimized for Buffalo WZR-1750DHP.
+endef
+$(eval $(call Profile,buffalo-wzr-1750dhp))
+
+define Profile/buffalo-wxr-1900dhp
+ NAME:=Buffalo WXR-1900DHP
+ PACKAGES:=kmod-usb-ohci kmod-usb2
+endef
+define Profile/buffalo-wxr-1900dhp/Description
+ Package set optimized for Buffalo WXR-1900DHP.
+endef
+$(eval $(call Profile,buffalo-wxr-1900dhp))
diff --git a/target/linux/bcm53xx/profiles/NETGEAR.mk b/target/linux/bcm53xx/profiles/NETGEAR.mk
new file mode 100644
index 0000000..c5a33c0
--- /dev/null
+++ b/target/linux/bcm53xx/profiles/NETGEAR.mk
@@ -0,0 +1,36 @@
+#
+# Copyright (C) 2015 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+define Profile/netgear-r6250
+ NAME:=NETGEAR R6250
+ PACKAGES:=kmod-b43 wpad-mini \
+ kmod-usb-ohci kmod-usb2
+endef
+define Profile/netgear-r6250/Description
+ Package set optimized for NETGEAR R6250.
+endef
+$(eval $(call Profile,netgear-r6250))
+
+define Profile/netgear-r6300-v2
+ NAME:=NETGEAR R6300 v2
+ PACKAGES:=kmod-b43 wpad-mini \
+ kmod-usb-ohci kmod-usb2
+endef
+define Profile/netgear-r6300-v2/Description
+ Package set optimized for NETGEAR R6300 v2.
+endef
+$(eval $(call Profile,netgear-r6300-v2))
+
+define Profile/netgear-r8000
+ NAME:=NETGEAR R8000
+ PACKAGES:=kmod-brcmfmac wpad-mini \
+ kmod-usb-ohci kmod-usb2
+endef
+define Profile/netgear-r8000/Description
+ Package set optimized for NETGEAR R8000.
+endef
+$(eval $(call Profile,netgear-r8000))
diff --git a/target/linux/bcm53xx/profiles/SmartRG.mk b/target/linux/bcm53xx/profiles/SmartRG.mk
new file mode 100644
index 0000000..2de26b2
--- /dev/null
+++ b/target/linux/bcm53xx/profiles/SmartRG.mk
@@ -0,0 +1,16 @@
+#
+# Copyright (C) 2015 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+define Profile/smartrg-sr400ac
+ NAME:=SmartRG SR400ac
+ PACKAGES:=kmod-b43 wpad-mini \
+ kmod-usb-ohci kmod-usb2
+endef
+define Profile/smartrg-sr400ac/Description
+ Package set optimized for SmartRG SR400ac.
+endef
+$(eval $(call Profile,smartrg-sr400ac))
--
1.9.1
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
More information about the openwrt-devel
mailing list