summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomáš Macholda2025-11-10 15:57:14 +0000
committerHauke Mehrtens2026-02-12 21:23:29 +0000
commitbbfee76d1d7a08a5a89eb1d15a106ff567039521 (patch)
tree04419c41f25fe90ff190b6bcae7b7a4e92b67b45
parent0271f2ee3649fcabcf5cb989743bbbdc38b34b3e (diff)
downloadopenwrt-bbfee76d1d7a08a5a89eb1d15a106ff567039521.tar.gz
mvebu: add depends for Turris MOX boards
Add dependencies for Turris MOX board modules directly as DEVICE_PACKAGES. (So that users don't have to add them manually.) The device uses an SD card for primary storage so space shouldn't be an issue. Signed-off-by: Tomáš Macholda <tomas.macholda@nic.cz> Link: https://github.com/openwrt/openwrt/pull/21151 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r--target/linux/mvebu/image/cortexa53.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/target/linux/mvebu/image/cortexa53.mk b/target/linux/mvebu/image/cortexa53.mk
index bf0c9be2e6..e90f01308c 100644
--- a/target/linux/mvebu/image/cortexa53.mk
+++ b/target/linux/mvebu/image/cortexa53.mk
@@ -2,7 +2,11 @@ define Device/cznic_turris-mox
$(call Device/Default-arm64)
DEVICE_VENDOR := CZ.NIC
DEVICE_MODEL := Turris MOX
- DEVICE_PACKAGES := kmod-usb2 kmod-gpio-button-hotplug kmod-rtc-ds1307 kmod-i2c-pxa
+ DEVICE_PACKAGES += kmod-usb2 kmod-usb3 \
+ kmod-rtc-ds1307 kmod-i2c-pxa kmod-dsa kmod-dsa-mv88e6xxx kmod-sfp \
+ kmod-phy-marvell kmod-phy-marvell-10g kmod-ath10k ath10k-board-qca988x \
+ ath10k-firmware-qca988x kmod-mt7915e kmod-mt7915-firmware mwlwifi-firmware-88w8997 \
+ wpad-basic-mbedtls
SOC := armada-3720
BOOT_SCRIPT := turris-mox
endef