mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
video: logo: LOGO should depend on FB_CORE i.s.o. FB
If CONFIG_FB_CORE=y and CONFIG_FB=n, the frame buffer bootup logos can
no longer be enabled. Fix this by making CONFIG_LOGO depend on
CONFIG_FB_CORE instead of CONFIG_FB, as there is no good reason for the
logo code to depend on the presence of real frame buffer device drivers.
Fixes: 55bffc8170
("fbdev: Split frame buffer support in FB and FB_CORE symbols")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/e4142b7cc9aad9975de1bc6b1c7d86ccee487e4c.1690535997.git.geert+renesas@glider.be
This commit is contained in:
parent
5c38052680
commit
701a9b9db9
@ -63,7 +63,7 @@ if VT
|
||||
source "drivers/video/console/Kconfig"
|
||||
endif
|
||||
|
||||
if FB || SGI_NEWPORT_CONSOLE
|
||||
if FB_CORE || SGI_NEWPORT_CONSOLE
|
||||
source "drivers/video/logo/Kconfig"
|
||||
|
||||
endif
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
menuconfig LOGO
|
||||
bool "Bootup logo"
|
||||
depends on FB || SGI_NEWPORT_CONSOLE
|
||||
depends on FB_CORE || SGI_NEWPORT_CONSOLE
|
||||
help
|
||||
Enable and select frame buffer bootup logos.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user