brintos

brintos / linux-shallow public Read only

0
0
Text · 1.4 KiB · ce6bb75 Raw
74 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# Logo configuration4#5 6menuconfig LOGO7	bool "Bootup logo"8	depends on FB_CORE || SGI_NEWPORT_CONSOLE9	help10	  Enable and select frame buffer bootup logos.11	  Monochrome logos will also be used by the DRM panic handler, if12	  enabled.13 14if LOGO15 16config FB_LOGO_EXTRA17	bool18	depends on FB=y19	default y if SPU_BASE20 21config LOGO_LINUX_MONO22	bool "Standard black and white Linux logo"23	default y24 25config LOGO_LINUX_VGA1626	bool "Standard 16-color Linux logo"27	default y28 29config LOGO_LINUX_CLUT22430	bool "Standard 224-color Linux logo"31	default y32 33config LOGO_DEC_CLUT22434	bool "224-color Digital Equipment Corporation Linux logo"35	depends on MACH_DECSTATION || ALPHA36	default y37 38config LOGO_MAC_CLUT22439	bool "224-color Macintosh Linux logo"40	depends on MAC41	default y42 43config LOGO_PARISC_CLUT22444	bool "224-color PA-RISC Linux logo"45	depends on PARISC46	default y47 48config LOGO_SGI_CLUT22449	bool "224-color SGI Linux logo"50	depends on SGI_IP22 || SGI_IP27 || SGI_IP3251	default y52 53config LOGO_SUN_CLUT22454	bool "224-color Sun Linux logo"55	depends on SPARC56	default y57 58config LOGO_SUPERH_MONO59	bool "Black and white SuperH Linux logo"60	depends on SUPERH61	default y62 63config LOGO_SUPERH_VGA1664	bool "16-color SuperH Linux logo"65	depends on SUPERH66	default y67 68config LOGO_SUPERH_CLUT22469	bool "224-color SuperH Linux logo"70	depends on SUPERH71	default y72 73endif # LOGO74