diff options
author | Paweł Owoc <frut3k7@gmail.com> | 2024-03-13 12:36:39 +0100 |
---|---|---|
committer | Robert Marko <robimarko@gmail.com> | 2024-05-16 20:27:36 +0200 |
commit | 7f1c87ebde223e9ddfd4fc9ea0a653596e60b935 (patch) | |
tree | 8ea2de82422c1322f8c5cf291b7ab2f1109c2c9a /target | |
parent | 0354f6baaea4638975c7f7e0404bed1a92987e4b (diff) | |
download | openwrt-7f1c87ebde223e9ddfd4fc9ea0a653596e60b935.tar.gz openwrt-7f1c87ebde223e9ddfd4fc9ea0a653596e60b935.tar.bz2 openwrt-7f1c87ebde223e9ddfd4fc9ea0a653596e60b935.zip |
qualcommax: ipq807x: define common Linksys MX device
Define common Linksys MX device for MX4200v1/v2 and MX5300.
Signed-off-by: Paweł Owoc <frut3k7@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/14883
Signed-off-by: Robert Marko <robimarko@gmail.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/qualcommax/image/ipq807x.mk | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/target/linux/qualcommax/image/ipq807x.mk b/target/linux/qualcommax/image/ipq807x.mk index e32250d458..a4fd6ff796 100644 --- a/target/linux/qualcommax/image/ipq807x.mk +++ b/target/linux/qualcommax/image/ipq807x.mk @@ -103,20 +103,26 @@ define Device/edimax_cax1800 endef TARGET_DEVICES += edimax_cax1800 -define Device/linksys_mx4200v1 +define Device/linksys_mx $(call Device/FitImage) DEVICE_VENDOR := Linksys - DEVICE_MODEL := MX4200 - DEVICE_VARIANT := v1 BLOCKSIZE := 128k PAGESIZE := 2048 KERNEL_SIZE := 6144k IMAGE_SIZE := 147456k NAND_SIZE := 512m - SOC := ipq8174 + SOC := ipq8072 IMAGES += factory.bin - IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | linksys-image type=MX4200 - DEVICE_PACKAGES := kmod-leds-pca963x ipq-wifi-linksys_mx4200 kmod-bluetooth + IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | linksys-image type=$$$$(DEVICE_MODEL) + DEVICE_PACKAGES := kmod-leds-pca963x +endef + +define Device/linksys_mx4200v1 + $(call Device/linksys_mx) + DEVICE_MODEL := MX4200 + DEVICE_VARIANT := v1 + SOC := ipq8174 + DEVICE_PACKAGES += ipq-wifi-linksys_mx4200 kmod-bluetooth endef TARGET_DEVICES += linksys_mx4200v1 @@ -127,19 +133,10 @@ endef TARGET_DEVICES += linksys_mx4200v2 define Device/linksys_mx5300 - $(call Device/FitImage) - DEVICE_VENDOR := Linksys + $(call Device/linksys_mx) DEVICE_MODEL := MX5300 - BLOCKSIZE := 128k - PAGESIZE := 2048 - KERNEL_SIZE := 6144k - IMAGE_SIZE := 147456k - NAND_SIZE := 512m - SOC := ipq8072 - IMAGES += factory.bin - IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-ubi | linksys-image type=MX5300 - DEVICE_PACKAGES := kmod-leds-pca963x kmod-rtc-ds1307 \ - ipq-wifi-linksys_mx5300 kmod-ath10k-ct ath10k-firmware-qca9984-ct + DEVICE_PACKAGES += kmod-rtc-ds1307 ipq-wifi-linksys_mx5300 \ + kmod-ath10k-ct ath10k-firmware-qca9984-ct endef TARGET_DEVICES += linksys_mx5300 |