[LEDE-DEV] [PATCH] bcm53xx: include USB modules in images for devices with USB ports
Rafał Miłecki
zajec5 at gmail.com
Thu Aug 11 01:02:45 PDT 2016
From: Rafał Miłecki <rafal at milecki.pl>
This allows using USB out of box.
Signed-off-by: Rafał Miłecki <rafal at milecki.pl>
---
target/linux/bcm53xx/image/Makefile | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/target/linux/bcm53xx/image/Makefile b/target/linux/bcm53xx/image/Makefile
index e77b574..43d7968 100644
--- a/target/linux/bcm53xx/image/Makefile
+++ b/target/linux/bcm53xx/image/Makefile
@@ -70,11 +70,14 @@ endef
DEVICE_VARS += PRODUCTID SIGNATURE NETGEAR_BOARD_ID NETGEAR_REGION
+USB2_PACKAGES := kmod-usb-ohci kmod-usb2
+USB3_PACKAGES := kmod-usb-ohci kmod-usb2 kmod-usb3
+
define Device/Default
# .dtb files are prefixed by SoC type, e.g. bcm4708- which is not included in device/image names
# extract the full dtb name based on the device info
DEVICE_DTS := $(patsubst %.dtb,%,$(notdir $(wildcard $(if $(IB),$(KDIR),$(DTS_DIR))/*-$(1).dtb)))
- DEVICE_PACKAGES := kmod-b43
+ DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
KERNEL := kernel-bin | append-dtb | lzma-d16
KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
FILESYSTEMS := squashfs
@@ -119,7 +122,7 @@ endef
define Device/dlink-dir-885l
DEVICE_TITLE := D-Link DIR-885L
- DEVICE_PACKAGES := kmod-brcmfmac
+ DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
$(Device/dlink)
SIGNATURE := wrgac42_dlink.2015_dir885l
endef
@@ -157,7 +160,7 @@ TARGET_DEVICES += netgear-r7000
define Device/netgear-r7900
DEVICE_TITLE := Netgear R7900
- DEVICE_PACKAGES := kmod-brcmfmac
+ DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
$(Device/netgear)
NETGEAR_BOARD_ID := U12H315T30_NETGEAR
endef
@@ -165,14 +168,14 @@ TARGET_DEVICES += netgear-r7900
define Device/netgear-r8000
DEVICE_TITLE := Netgear R8000
- DEVICE_PACKAGES := kmod-brcmfmac
+ DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
$(Device/netgear)
NETGEAR_BOARD_ID := U12H315T00_NETGEAR
endef
define Device/netgear-r8500
DEVICE_TITLE := Netgear R8500
- DEVICE_PACKAGES := kmod-brcmfmac
+ DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
$(Device/netgear)
NETGEAR_BOARD_ID := U12H334T00_NETGEAR
endef
@@ -180,7 +183,7 @@ endef
define Device/smartrg-sr400ac
DEVICE_TITLE := SmartRG SR400ac
- DEVICE_PACKAGES := kmod-brcmfmac
+ DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
IMAGES := trx
IMAGE/trx := append-rootfs | trx-serial
endef
--
1.8.4.5
More information about the Lede-dev
mailing list