From 9208fb6f9f33e3d3eebabb35a330c3adb548738b Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Sat, 11 Apr 2026 14:09:33 +0200 Subject: [PATCH] mvebu: make leds-turris-omnia depend on turris-omnia-mcu Without explicit dependency between these two packages compilation against Kernel 6.18 fails with the following error: Package kmod-leds-turris-omnia is missing dependencies for the following libraries: turris-omnia-mcu.ko Make the dependency explicit to resolve this issue. Signed-off-by: Stefan Kalscheuer Link: https://github.com/openwrt/openwrt/pull/22761 Signed-off-by: Hauke Mehrtens --- target/linux/mvebu/modules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/mvebu/modules.mk b/target/linux/mvebu/modules.mk index 849a5af55d1..a4a15543f93 100644 --- a/target/linux/mvebu/modules.mk +++ b/target/linux/mvebu/modules.mk @@ -45,7 +45,7 @@ $(eval $(call KernelPackage,turris-omnia-mcu)) define KernelPackage/leds-turris-omnia SUBMENU:=$(LEDS_MENU) TITLE:=LED support for CZ.NIC's Turris Omnia - DEPENDS:=@TARGET_mvebu_cortexa9 + DEPENDS:=@TARGET_mvebu_cortexa9 kmod-turris-omnia-mcu KCONFIG:=CONFIG_LEDS_TURRIS_OMNIA FILES:=$(LINUX_DIR)/drivers/leds/leds-turris-omnia.ko AUTOLOAD:=$(call AutoLoad,60,leds-turris-omnia,1)