diff options
| author | Paweł Owoc | 2024-07-27 21:25:14 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-12-31 16:44:10 +0000 |
| commit | dbafc95cc5f7847a1d3c4524d372405f9144183d (patch) | |
| tree | b71f526f8c8844d91ce9935db0305e3b980de7f1 | |
| parent | c9b324d3ac084253171ac6233ca12cb4feacf36c (diff) | |
| download | openwrt-dbafc95cc5f7847a1d3c4524d372405f9144183d.tar.gz | |
qualcommax: ipq807x: define configuration for Linksys MX4x00 devices
Define shared configuration for Linksys MX4x00 devices.
Signed-off-by: Paweł Owoc <frut3k7@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16070
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | target/linux/qualcommax/image/ipq807x.mk | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/target/linux/qualcommax/image/ipq807x.mk b/target/linux/qualcommax/image/ipq807x.mk index 4a194c6cb7..8dacb054a8 100644 --- a/target/linux/qualcommax/image/ipq807x.mk +++ b/target/linux/qualcommax/image/ipq807x.mk @@ -170,12 +170,17 @@ define Device/linksys_mx DEVICE_PACKAGES := kmod-leds-pca963x endef -define Device/linksys_mx4200v1 +define Device/linksys_mx4x00 $(call Device/linksys_mx) + SOC := ipq8174 + DEVICE_PACKAGES += ipq-wifi-linksys_mx4200 +endef + +define Device/linksys_mx4200v1 + $(call Device/linksys_mx4x00) DEVICE_MODEL := MX4200 DEVICE_VARIANT := v1 - SOC := ipq8174 - DEVICE_PACKAGES += ipq-wifi-linksys_mx4200 kmod-bluetooth + DEVICE_PACKAGES += kmod-bluetooth endef TARGET_DEVICES += linksys_mx4200v1 |