From: Mieczyslaw Nalewaj Date: Sat, 5 Apr 2025 16:44:36 +0000 (+0200) Subject: kernel/drm-ttm-helper: 6.12: fix missing dependency X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16547%2Fhead;p=thirdparty%2Fopenwrt.git kernel/drm-ttm-helper: 6.12: fix missing dependency Add missing depends kmod-drm-kms-helper. Package kmod-drm-ttm-helper is missing dependencies for the following libraries: drm_kms_helper.ko fb_sys_fops.ko syscopyarea.ko sysfillrect.ko sysimgblt.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 9ca299fd71b..8153c54069a 100644 --- a/package/kernel/linux/modules/video.mk +++ b/package/kernel/linux/modules/video.mk @@ -389,7 +389,7 @@ define KernelPackage/drm-ttm-helper SUBMENU:=$(VIDEO_MENU) TITLE:=Helpers for ttm-based gem objects HIDDEN:=1 - DEPENDS:=@DISPLAY_SUPPORT +kmod-drm-ttm + DEPENDS:=@DISPLAY_SUPPORT +kmod-drm-ttm +!LINUX_6_6:kmod-drm-kms-helper KCONFIG:=CONFIG_DRM_TTM_HELPER FILES:=$(LINUX_DIR)/drivers/gpu/drm/drm_ttm_helper.ko AUTOLOAD:=$(call AutoProbe,drm_ttm_helper)