[openwrt/openwrt] kernel: modules: video: package DRM suballocation helper
LEDE Commits
lede-commits at lists.infradead.org
Fri Mar 15 07:25:09 PDT 2024
robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/08f1c36d0081ca183dce2c17cd5d0692ad63e430
commit 08f1c36d0081ca183dce2c17cd5d0692ad63e430
Author: Robert Marko <robimarko at gmail.com>
AuthorDate: Fri Mar 15 12:50:14 2024 +0100
kernel: modules: video: package DRM suballocation helper
Linux 6.4 has split out the previously AMDGPU specific suballocation
helper into a generic one and it has its own symbol now.
So, lets package it as a separate helper as AMDGPU still requires it
for 6.6.
Signed-off-by: Robert Marko <robimarko at gmail.com>
---
package/kernel/linux/modules/video.mk | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/package/kernel/linux/modules/video.mk b/package/kernel/linux/modules/video.mk
index 73c94e391c..1e12ffbb40 100644
--- a/package/kernel/linux/modules/video.mk
+++ b/package/kernel/linux/modules/video.mk
@@ -353,6 +353,22 @@ endef
$(eval $(call KernelPackage,drm-kms-helper))
+define KernelPackage/drm-suballoc-helper
+ SUBMENU:=$(VIDEO_MENU)
+ HIDDEN:=1
+ TITLE:=DRM suballocation helper
+ DEPENDS:=@DISPLAY_SUPPORT +kmod-drm @LINUX_6_6
+ KCONFIG:=CONFIG_DRM_SUBALLOC_HELPER
+ FILES:=$(LINUX_DIR)/drivers/gpu/drm/drm_suballoc_helper.ko
+ AUTOLOAD:=$(call AutoProbe,drm_suballoc_helper)
+endef
+
+define KernelPackage/drm-suballoc-helper/description
+ DRM suballocation helper.
+endef
+
+$(eval $(call KernelPackage,drm-suballoc-helper))
+
define KernelPackage/drm-amdgpu
SUBMENU:=$(VIDEO_MENU)
TITLE:=AMDGPU DRM support
More information about the lede-commits
mailing list