mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
9a758d8756
Move the nomodeset kernel parameter to drivers/video to make it available to non-DRM drivers. Adapt the interface, but keep the DRM interface drm_firmware_drivers_only() to avoid churn within DRM. The function should later be inlined into callers. The parameter disables any DRM graphics driver that would replace a driver for firmware-provided scanout buffers. It is an option to easily fallback to basic graphics output if the hardware's native driver is broken. Moving it to a more prominent location wil make it available to fbdev as well. v2: * clarify the meaning of the nomodeset parameter (Javier) Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20221111133024.9897-2-tzimmermann@suse.de
18 lines
535 B
Makefile
18 lines
535 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_APERTURE_HELPERS) += aperture.o
|
|
obj-$(CONFIG_VGASTATE) += vgastate.o
|
|
obj-$(CONFIG_VIDEO_NOMODESET) += nomodeset.o
|
|
obj-$(CONFIG_HDMI) += hdmi.o
|
|
|
|
obj-$(CONFIG_VT) += console/
|
|
obj-$(CONFIG_FB_STI) += console/
|
|
obj-$(CONFIG_LOGO) += logo/
|
|
obj-y += backlight/
|
|
|
|
obj-y += fbdev/
|
|
|
|
obj-$(CONFIG_VIDEOMODE_HELPERS) += display_timing.o videomode.o
|
|
ifeq ($(CONFIG_OF),y)
|
|
obj-$(CONFIG_VIDEOMODE_HELPERS) += of_display_timing.o of_videomode.o
|
|
endif
|