diff options
author | Robert Marko <robimarko@gmail.com> | 2023-08-14 13:47:49 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2023-08-15 17:16:05 +0200 |
commit | 73aa78c4a0c319a0a66096d08358fa41008db0de (patch) | |
tree | f7004aaf4a0c8e6041b91a7dac3f366012d3163a | |
parent | 1aeb247fc826d9a58f3a8842b18dcb9a24558ba1 (diff) | |
download | upstream-73aa78c4a0c319a0a66096d08358fa41008db0de.tar.gz upstream-73aa78c4a0c319a0a66096d08358fa41008db0de.tar.bz2 upstream-73aa78c4a0c319a0a66096d08358fa41008db0de.zip |
ipq40xx: commonize Meraki recipe
MR33 and MR74 share pretty much everything in the image recipe, so lets
extract a common recipe to avoid duplication.
Signed-off-by: Robert Marko <robimarko@gmail.com>
(cherry picked from commit 9e9dc1890c6f58d858208136ecfa435445dfca09)
-rw-r--r-- | target/linux/ipq40xx/image/generic.mk | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/target/linux/ipq40xx/image/generic.mk b/target/linux/ipq40xx/image/generic.mk index a9dd2aa091..55e143e0dd 100644 --- a/target/linux/ipq40xx/image/generic.mk +++ b/target/linux/ipq40xx/image/generic.mk @@ -756,26 +756,25 @@ define Device/luma_wrtq-329acn endef TARGET_DEVICES += luma_wrtq-329acn -define Device/meraki_mr33 +define Device/meraki_common $(call Device/FitImage) DEVICE_VENDOR := Cisco Meraki - DEVICE_MODEL := MR33 SOC := qcom-ipq4029 BLOCKSIZE := 128k PAGESIZE := 2048 DEVICE_PACKAGES := -swconfig ath10k-firmware-qca9887-ct +endef + +define Device/meraki_mr33 + $(call Device/meraki_common) + DEVICE_MODEL := MR33 DEFAULT := n endef TARGET_DEVICES += meraki_mr33 define Device/meraki_mr74 - $(call Device/FitImage) - DEVICE_VENDOR := Cisco Meraki + $(call Device/meraki_common) DEVICE_MODEL := MR74 - SOC := qcom-ipq4029 - BLOCKSIZE := 128k - PAGESIZE := 2048 - DEVICE_PACKAGES := -swconfig ath10k-firmware-qca9887-ct DEVICE_DTS_CONFIG := config@3 DEFAULT := n endef |