xref: /linux/drivers/video/logo/Kconfig (revision a1ff5a7d78a036d6c2178ee5acd6ba4946243800)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Logo configuration
4#
5
6menuconfig LOGO
7	bool "Bootup logo"
8	depends on FB_CORE || SGI_NEWPORT_CONSOLE
9	help
10	  Enable and select frame buffer bootup logos.
11	  Monochrome logos will also be used by the DRM panic handler, if
12	  enabled.
13
14if LOGO
15
16config FB_LOGO_EXTRA
17	bool
18	depends on FB=y
19	default y if SPU_BASE
20
21config LOGO_LINUX_MONO
22	bool "Standard black and white Linux logo"
23	default y
24
25config LOGO_LINUX_VGA16
26	bool "Standard 16-color Linux logo"
27	default y
28
29config LOGO_LINUX_CLUT224
30	bool "Standard 224-color Linux logo"
31	default y
32
33config LOGO_DEC_CLUT224
34	bool "224-color Digital Equipment Corporation Linux logo"
35	depends on MACH_DECSTATION || ALPHA
36	default y
37
38config LOGO_MAC_CLUT224
39	bool "224-color Macintosh Linux logo"
40	depends on MAC
41	default y
42
43config LOGO_PARISC_CLUT224
44	bool "224-color PA-RISC Linux logo"
45	depends on PARISC
46	default y
47
48config LOGO_SGI_CLUT224
49	bool "224-color SGI Linux logo"
50	depends on SGI_IP22 || SGI_IP27 || SGI_IP32
51	default y
52
53config LOGO_SUN_CLUT224
54	bool "224-color Sun Linux logo"
55	depends on SPARC
56	default y
57
58config LOGO_SUPERH_MONO
59	bool "Black and white SuperH Linux logo"
60	depends on SUPERH
61	default y
62
63config LOGO_SUPERH_VGA16
64	bool "16-color SuperH Linux logo"
65	depends on SUPERH
66	default y
67
68config LOGO_SUPERH_CLUT224
69	bool "224-color SuperH Linux logo"
70	depends on SUPERH
71	default y
72
73endif # LOGO
74