diff options
author | Dan Haab <dan.haab@legrand.com> | 2020-04-06 16:14:39 -0700 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2020-04-07 15:27:52 +0200 |
commit | c459a6bf482f5afc4746a4a108a143e9194cd59d (patch) | |
tree | 6915249faa714d1444cd02dbe8e04d8e8b957f4b /target/linux/bcm53xx/image | |
parent | 7daab6286110b95167e291409395494f18edc9dc (diff) | |
download | upstream-c459a6bf482f5afc4746a4a108a143e9194cd59d.tar.gz upstream-c459a6bf482f5afc4746a4a108a143e9194cd59d.tar.bz2 upstream-c459a6bf482f5afc4746a4a108a143e9194cd59d.zip |
bcm53xx: add support for Luxul FullMAC WiFi devices
This prepares support for models XAP-1610 and XWR-3150. Flashing
requires using Luxul firmware version:
1) 8.1.0 or newer for XAP-1610
2) 6.4.0 or newer for XWR-3150
and uploading firmware using "Firmware Update" web UI page.
Signed-off-by: Dan Haab <dan.haab@legrand.com>
Diffstat (limited to 'target/linux/bcm53xx/image')
-rw-r--r-- | target/linux/bcm53xx/image/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/target/linux/bcm53xx/image/Makefile b/target/linux/bcm53xx/image/Makefile index 610af03abe..b3ec1e99a2 100644 --- a/target/linux/bcm53xx/image/Makefile +++ b/target/linux/bcm53xx/image/Makefile @@ -291,6 +291,15 @@ define Device/luxul-abr-4500 endef TARGET_DEVICES += luxul-abr-4500 +define Device/luxul-xap-1610 + $(Device/luxul) + DEVICE_MODEL := XAP-1610 + DEVICE_PACKAGES := $(BRCMFMAC_4366C0) + IMAGE/lxl := append-rootfs | trx-serial | luxul-lxl + LUXUL_BOARD := XAP-1610 +endef +TARGET_DEVICES += luxul-xap-1610 + define Device/luxul-xbr-4500 $(Device/luxul) DEVICE_MODEL := XBR-4500 @@ -299,6 +308,15 @@ define Device/luxul-xbr-4500 endef TARGET_DEVICES += luxul-xbr-4500 +define Device/luxul-xwr-3150 + $(Device/luxul) + DEVICE_MODEL := XWR-3150 + DEVICE_PACKAGES := $(BRCMFMAC_4366C0) $(USB3_PACKAGES) + DEVICE_DTS := bcm47094-luxul-xwr-3150-v1 + LUXUL_BOARD := XWR-3150 +endef +TARGET_DEVICES += luxul-xwr-3150 + define Device/netgear DEVICE_VENDOR := NETGEAR IMAGES := chk |