From: Hauke Mehrtens Date: Sun, 26 May 2024 21:53:10 +0000 (+0200) Subject: kernel: Add CONFIG_FB_DEVICE to kmod-fb X-Git-Tag: v24.10.0-rc1~1687 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F15559%2Fhead;p=thirdparty%2Fopenwrt.git kernel: Add CONFIG_FB_DEVICE to kmod-fb At least kmod-fb-tft depends on CONFIG_FB_DEVICE and can not be activated without it. This configuration option was added with kernel 6.6, before this featre was always activated. Signed-off-by: Hauke Mehrtens --- diff --git a/package/kernel/linux/modules/video.mk b/package/kernel/linux/modules/video.mk index dc1953279e4..018f5644b02 100644 --- a/package/kernel/linux/modules/video.mk +++ b/package/kernel/linux/modules/video.mk @@ -83,6 +83,7 @@ define KernelPackage/fb DEPENDS:=@DISPLAY_SUPPORT KCONFIG:= \ CONFIG_FB \ + CONFIG_FB_DEVICE=y \ CONFIG_FB_MXS=n \ CONFIG_FB_SM750=n \ CONFIG_FRAMEBUFFER_CONSOLE=y \