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:51:11 +0200 |
commit | 5b9b833f8c4dc973f557e90f1038d7d3f1d2042b (patch) | |
tree | bc8967799bbf9e14d95bcf81ea7f9766689c7d81 /target/linux/bcm53xx/image | |
parent | ab3549a870ed8dcc78fffd130971d081ea3d08f0 (diff) | |
download | upstream-5b9b833f8c4dc973f557e90f1038d7d3f1d2042b.tar.gz upstream-5b9b833f8c4dc973f557e90f1038d7d3f1d2042b.tar.bz2 upstream-5b9b833f8c4dc973f557e90f1038d7d3f1d2042b.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>
(cherry picked from commit c459a6bf482f5afc4746a4a108a143e9194cd59d)
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 3946b47032..f2dd405aa2 100644 --- a/target/linux/bcm53xx/image/Makefile +++ b/target/linux/bcm53xx/image/Makefile @@ -280,6 +280,15 @@ define Device/luxul-abr-4500 endef TARGET_DEVICES += luxul-abr-4500 +define Device/luxul-xap-1610 + $(Device/luxul) + DEVICE_TITLE := Luxul 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_TITLE := Luxul XBR-4500 @@ -288,6 +297,15 @@ define Device/luxul-xbr-4500 endef TARGET_DEVICES += luxul-xbr-4500 +define Device/luxul-xwr-3150 + $(Device/luxul) + DEVICE_TITLE := Luxul 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 IMAGES := chk IMAGE/chk := append-ubi | trx-nand | netgear-chk |