diff options
| author | Robert Marko | 2021-11-12 12:17:10 +0000 |
|---|---|---|
| committer | Christian Lamparter | 2022-05-19 14:39:54 +0000 |
| commit | 5dbc370d8e6172b863c6ffff8082e017a90c4db7 (patch) | |
| tree | ad9e2db520d22ed0bd34f422495070b04b66d722 | |
| parent | cfee3f2eeecc75abed3294a8b949c2ca48c3c08c (diff) | |
| download | chunkeey-master.tar.gz | |
Since MikroTik subtarget now uses dynamic BDF loading its crucial that it
doesnt include the board-2.bin at all which is provided by the
ath10k-board-qca4019 package.
So to resolve this include the ath10k-board-qca4019 package only for the
generic subtarget via its Makefile instead of via the target Makefile.
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | target/linux/ipq40xx/Makefile | 2 | ||||
| -rw-r--r-- | target/linux/ipq40xx/generic/target.mk | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/target/linux/ipq40xx/Makefile b/target/linux/ipq40xx/Makefile index 7df920e2d8..19b63cdd65 100644 --- a/target/linux/ipq40xx/Makefile +++ b/target/linux/ipq40xx/Makefile @@ -19,6 +19,6 @@ DEFAULT_PACKAGES += \ kmod-leds-gpio kmod-gpio-button-hotplug swconfig \ kmod-ath10k-ct wpad-basic-wolfssl \ kmod-usb3 kmod-usb-dwc3 ath10k-firmware-qca4019-ct \ - ath10k-board-qca4019 uboot-envtools + uboot-envtools $(eval $(call BuildTarget)) diff --git a/target/linux/ipq40xx/generic/target.mk b/target/linux/ipq40xx/generic/target.mk index e158b1c98b..7867c30c23 100644 --- a/target/linux/ipq40xx/generic/target.mk +++ b/target/linux/ipq40xx/generic/target.mk @@ -1,2 +1,4 @@ BOARDNAME:=Generic + +DEFAULT_PACKAGES += ath10k-board-qca4019 FEATURES+=emmc |