From: Mieczyslaw Nalewaj Date: Sat, 5 Apr 2025 16:33:30 +0000 (+0200) Subject: kernel/backlight: 6.12: fix missing dependency X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be83adbf1fde643b2bd2c1d7191553ec6a544c9e;p=thirdparty%2Fopenwrt.git 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 --- 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 \