bcm53xx: include USB modules in images for devices with USB ports
This allows using USB out of the box. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
This commit is contained in:
parent
0b9de8daa7
commit
b835d7e811
@ -70,6 +70,9 @@ endef
|
|||||||
|
|
||||||
DEVICE_VARS += PRODUCTID SIGNATURE NETGEAR_BOARD_ID NETGEAR_REGION
|
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
|
define Device/Default
|
||||||
# .dtb files are prefixed by SoC type, e.g. bcm4708- which is not included in device/image names
|
# .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
|
# extract the full dtb name based on the device info
|
||||||
@ -93,22 +96,25 @@ endef
|
|||||||
|
|
||||||
define Device/asus-rt-ac56u
|
define Device/asus-rt-ac56u
|
||||||
DEVICE_TITLE := Asus RT-AC56U
|
DEVICE_TITLE := Asus RT-AC56U
|
||||||
DEVICE_PACKAGES := kmod-b43
|
DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
|
||||||
endef
|
endef
|
||||||
TARGET_DEVICES += asus-rt-ac56u
|
TARGET_DEVICES += asus-rt-ac56u
|
||||||
|
|
||||||
define Device/asus-rt-ac68u
|
define Device/asus-rt-ac68u
|
||||||
DEVICE_TITLE := Asus RT-AC68U
|
DEVICE_TITLE := Asus RT-AC68U
|
||||||
|
DEVICE_PACKAGES := $(USB3_PACKAGES)
|
||||||
endef
|
endef
|
||||||
TARGET_DEVICES += asus-rt-ac68u
|
TARGET_DEVICES += asus-rt-ac68u
|
||||||
|
|
||||||
define Device/asus-rt-ac87u
|
define Device/asus-rt-ac87u
|
||||||
DEVICE_TITLE := Asus RT-AC87U
|
DEVICE_TITLE := Asus RT-AC87U
|
||||||
|
DEVICE_PACKAGES := $(USB3_PACKAGES)
|
||||||
endef
|
endef
|
||||||
TARGET_DEVICES += asus-rt-ac87u
|
TARGET_DEVICES += asus-rt-ac87u
|
||||||
|
|
||||||
define Device/asus-rt-n18u
|
define Device/asus-rt-n18u
|
||||||
DEVICE_TITLE := Asus RT-N18U
|
DEVICE_TITLE := Asus RT-N18U
|
||||||
|
DEVICE_PACKAGES := $(USB3_PACKAGES)
|
||||||
endef
|
endef
|
||||||
TARGET_DEVICES += asus-rt-n18u
|
TARGET_DEVICES += asus-rt-n18u
|
||||||
|
|
||||||
@ -119,7 +125,7 @@ endef
|
|||||||
|
|
||||||
define Device/dlink-dir-885l
|
define Device/dlink-dir-885l
|
||||||
DEVICE_TITLE := D-Link DIR-885L
|
DEVICE_TITLE := D-Link DIR-885L
|
||||||
DEVICE_PACKAGES := kmod-brcmfmac
|
DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
|
||||||
$(Device/dlink)
|
$(Device/dlink)
|
||||||
SIGNATURE := wrgac42_dlink.2015_dir885l
|
SIGNATURE := wrgac42_dlink.2015_dir885l
|
||||||
endef
|
endef
|
||||||
@ -127,7 +133,7 @@ TARGET_DEVICES += dlink-dir-885l
|
|||||||
|
|
||||||
define Device/linksys-ea6300-v1
|
define Device/linksys-ea6300-v1
|
||||||
DEVICE_TITLE := Linksys EA6300 V1
|
DEVICE_TITLE := Linksys EA6300 V1
|
||||||
DEVICE_PACKAGES := kmod-b43
|
DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
|
||||||
endef
|
endef
|
||||||
TARGET_DEVICES += linksys-ea6300-v1
|
TARGET_DEVICES += linksys-ea6300-v1
|
||||||
|
|
||||||
@ -139,20 +145,21 @@ endef
|
|||||||
|
|
||||||
define Device/netgear-r6250
|
define Device/netgear-r6250
|
||||||
DEVICE_TITLE := Netgear R6250
|
DEVICE_TITLE := Netgear R6250
|
||||||
DEVICE_PACKAGES := kmod-b43
|
DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
|
||||||
$(Device/netgear)
|
$(Device/netgear)
|
||||||
NETGEAR_BOARD_ID := U12H245T00_NETGEAR
|
NETGEAR_BOARD_ID := U12H245T00_NETGEAR
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Device/netgear-r6300-v2
|
define Device/netgear-r6300-v2
|
||||||
DEVICE_TITLE := Netgear R6300 V2
|
DEVICE_TITLE := Netgear R6300 V2
|
||||||
DEVICE_PACKAGES := kmod-b43
|
DEVICE_PACKAGES := kmod-b43 $(USB3_PACKAGES)
|
||||||
$(Device/netgear)
|
$(Device/netgear)
|
||||||
NETGEAR_BOARD_ID := U12H240T00_NETGEAR
|
NETGEAR_BOARD_ID := U12H240T00_NETGEAR
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Device/netgear-r7000
|
define Device/netgear-r7000
|
||||||
DEVICE_TITLE := Netgear R7000
|
DEVICE_TITLE := Netgear R7000
|
||||||
|
DEVICE_PACKAGES := $(USB3_PACKAGES)
|
||||||
$(Device/netgear)
|
$(Device/netgear)
|
||||||
NETGEAR_BOARD_ID := U12H270T00_NETGEAR
|
NETGEAR_BOARD_ID := U12H270T00_NETGEAR
|
||||||
endef
|
endef
|
||||||
@ -160,7 +167,7 @@ TARGET_DEVICES += netgear-r7000
|
|||||||
|
|
||||||
define Device/netgear-r7900
|
define Device/netgear-r7900
|
||||||
DEVICE_TITLE := Netgear R7900
|
DEVICE_TITLE := Netgear R7900
|
||||||
DEVICE_PACKAGES := kmod-brcmfmac
|
DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
|
||||||
$(Device/netgear)
|
$(Device/netgear)
|
||||||
NETGEAR_BOARD_ID := U12H315T30_NETGEAR
|
NETGEAR_BOARD_ID := U12H315T30_NETGEAR
|
||||||
endef
|
endef
|
||||||
@ -168,14 +175,14 @@ TARGET_DEVICES += netgear-r7900
|
|||||||
|
|
||||||
define Device/netgear-r8000
|
define Device/netgear-r8000
|
||||||
DEVICE_TITLE := Netgear R8000
|
DEVICE_TITLE := Netgear R8000
|
||||||
DEVICE_PACKAGES := kmod-brcmfmac
|
DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
|
||||||
$(Device/netgear)
|
$(Device/netgear)
|
||||||
NETGEAR_BOARD_ID := U12H315T00_NETGEAR
|
NETGEAR_BOARD_ID := U12H315T00_NETGEAR
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Device/netgear-r8500
|
define Device/netgear-r8500
|
||||||
DEVICE_TITLE := Netgear R8500
|
DEVICE_TITLE := Netgear R8500
|
||||||
DEVICE_PACKAGES := kmod-brcmfmac
|
DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
|
||||||
$(Device/netgear)
|
$(Device/netgear)
|
||||||
NETGEAR_BOARD_ID := U12H334T00_NETGEAR
|
NETGEAR_BOARD_ID := U12H334T00_NETGEAR
|
||||||
endef
|
endef
|
||||||
@ -183,7 +190,7 @@ endef
|
|||||||
|
|
||||||
define Device/smartrg-sr400ac
|
define Device/smartrg-sr400ac
|
||||||
DEVICE_TITLE := SmartRG SR400ac
|
DEVICE_TITLE := SmartRG SR400ac
|
||||||
DEVICE_PACKAGES := kmod-brcmfmac
|
DEVICE_PACKAGES := kmod-brcmfmac $(USB3_PACKAGES)
|
||||||
IMAGES := trx
|
IMAGES := trx
|
||||||
IMAGE/trx := append-rootfs | trx-serial
|
IMAGE/trx := append-rootfs | trx-serial
|
||||||
endef
|
endef
|
||||||
|
Loading…
x
Reference in New Issue
Block a user