Skip to content

Commit 3ffaede

Browse files
committed
lkt: runner: Handle CONFIG_FB_BACKLIGHT=m on newer kernels
Signed-off-by: Nathan Chancellor <[email protected]>
1 parent 1fae1c2 commit 3ffaede

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lkt/runner.py

+2
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,8 @@ def _distro_adjustments(self):
345345
('DRIVER_PE_KUNIT_TEST', 'drivers/base/test/Kconfig'),
346346
# CONFIG_DRM_GEM_{CMA,SHMEM}_HELPER as modules is invalid before https://git.kernel.org/linus/4b2b5e142ff499a2bef2b8db0272bbda1088a3fe
347347
*[(f"DRM_GEM_{val}_HELPER", 'drivers/gpu/drm/Kconfig') for val in ('CMA', 'SHMEM')],
348+
# CONFIG_FB_BACKLIGHT as a module is invalid after https://git.kernel.org/linus/8fc38062be3f692ff8816da84fde71972530bcc4
349+
('FB_BACKLIGHT', 'drivers/video/fbdev/core/Kconfig'),
348350
# CONFIG_FSCACHE as a module is invalid after https://git.kernel.org/next/linux-next/c/9896c4f367fcc44213d15fe7210e9305df8063f2
349351
# While the new configuration location is fs/netfs/Kconfig, we
350352
# check for whether or not FSCACHE can be a module in

0 commit comments

Comments
 (0)