From be83adbf1fde643b2bd2c1d7191553ec6a544c9e Mon Sep 17 00:00:00 2001 From: Mieczyslaw Nalewaj Date: Sat, 5 Apr 2025 18:33:30 +0200 Subject: [PATCH] kernel/backlight: 6.12: fix missing dependency Add missing depends kmod-fb. Package kmod-backlight is missing dependencies for the following libraries: fb.ko Signed-off-by: Mieczyslaw Nalewaj Link: https://github.com/openwrt/openwrt/pull/16547 Signed-off-by: Christian Marangi --- package/kernel/linux/modules/video.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/kernel/linux/modules/video.mk b/package/kernel/linux/modules/video.mk index 0916a085ba3..9ca299fd71b 100644 --- a/package/kernel/linux/modules/video.mk +++ b/package/kernel/linux/modules/video.mk @@ -63,7 +63,7 @@ $(eval $(call KernelPackage,acpi-video)) define KernelPackage/backlight SUBMENU:=$(VIDEO_MENU) TITLE:=Backlight support - DEPENDS:=@DISPLAY_SUPPORT + DEPENDS:=@DISPLAY_SUPPORT +!LINUX_6_6:kmod-fb HIDDEN:=1 KCONFIG:=CONFIG_BACKLIGHT_CLASS_DEVICE \ CONFIG_BACKLIGHT_LCD_SUPPORT=y \