mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-27 04:22:58 +00:00
Currently the CONFIG_FB option has to be enabled even if no legacy fbdev drivers are needed (e.g: only to have support for framebuffer consoles). The DRM subsystem has a fbdev emulation layer, but depends on CONFIG_FB and so it can only be enabled if that dependency is enabled as well. That means fbdev drivers have to be explicitly disabled if users want to enable CONFIG_FB, only to use fbcon and/or the DRM fbdev emulation layer. This patch introduces a non-visible CONFIG_FB_CORE symbol that could be enabled just to have core support needed for CONFIG_DRM_FBDEV_EMULATION, allowing CONFIG_FB to be disabled (and automatically disabling all the fbdev drivers). Nothing from fb_backlight.o and fbmon.o is used by the DRM fbdev emulation layer so these two objects can be compiled out when CONFIG_FB is disabled. Signed-off-by: Javier Martinez Canillas <javierm@redhat.com> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Tested-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Helge Deller <deller@gmx.de> Link: https://patchwork.freedesktop.org/patch/msgid/20230719081544.741051-4-javierm@redhat.com
35 lines
1.3 KiB
Makefile
35 lines
1.3 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_FB_NOTIFY) += fb_notify.o
|
|
obj-$(CONFIG_FB_CORE) += fb.o
|
|
fb-y := fb_info.o \
|
|
fbmem.o fbcmap.o \
|
|
modedb.o fbcvt.o fb_cmdline.o fb_io_fops.o
|
|
ifdef CONFIG_FB
|
|
fb-y += fb_backlight.o fbmon.o
|
|
endif
|
|
fb-$(CONFIG_FB_DEFERRED_IO) += fb_defio.o
|
|
fb-$(CONFIG_FB_DEVICE) += fb_chrdev.o \
|
|
fb_procfs.o \
|
|
fbsysfs.o
|
|
|
|
ifeq ($(CONFIG_FRAMEBUFFER_CONSOLE),y)
|
|
fb-y += fbcon.o bitblit.o softcursor.o
|
|
ifeq ($(CONFIG_FB_TILEBLITTING),y)
|
|
fb-y += tileblit.o
|
|
endif
|
|
ifeq ($(CONFIG_FRAMEBUFFER_CONSOLE_ROTATION),y)
|
|
fb-y += fbcon_rotate.o fbcon_cw.o fbcon_ud.o \
|
|
fbcon_ccw.o
|
|
endif
|
|
endif
|
|
|
|
obj-$(CONFIG_FB_CFB_FILLRECT) += cfbfillrect.o
|
|
obj-$(CONFIG_FB_CFB_COPYAREA) += cfbcopyarea.o
|
|
obj-$(CONFIG_FB_CFB_IMAGEBLIT) += cfbimgblt.o
|
|
obj-$(CONFIG_FB_SYS_FILLRECT) += sysfillrect.o
|
|
obj-$(CONFIG_FB_SYS_COPYAREA) += syscopyarea.o
|
|
obj-$(CONFIG_FB_SYS_IMAGEBLIT) += sysimgblt.o
|
|
obj-$(CONFIG_FB_SYS_FOPS) += fb_sys_fops.o
|
|
obj-$(CONFIG_FB_SVGALIB) += svgalib.o
|
|
obj-$(CONFIG_FB_DDC) += fb_ddc.o
|