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