diff options
| author | Tomáš Macholda | 2025-11-10 15:57:14 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2026-02-12 23:18:14 +0000 |
| commit | 72f591244871fa96dc859914bf0a1ff6cda9e7d1 (patch) | |
| tree | c28c178e23982199bfe064b86cb2b4a578c5e308 | |
| parent | 324e157b4bf2fea54bd2608ab2af05066936e12f (diff) | |
| download | openwrt-72f591244871fa96dc859914bf0a1ff6cda9e7d1.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>
(cherry picked from commit bbfee76d1d7a08a5a89eb1d15a106ff567039521)
| -rw-r--r-- | target/linux/mvebu/image/cortexa53.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target/linux/mvebu/image/cortexa53.mk b/target/linux/mvebu/image/cortexa53.mk index f5cbd8a70b..ee012c1a0b 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 |