Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
fork
Configure Feed
Select the types of activity you want to include in your feed.
1#
2# Logo configuration
3#
4
5menuconfig LOGO
6 bool "Bootup logo"
7 depends on FB || SGI_NEWPORT_CONSOLE
8 help
9 Enable and select frame buffer bootup logos.
10
11if LOGO
12
13config FB_LOGO_CENTER
14 bool "Center the logo"
15 depends on FB=y
16 help
17 When this option is selected, the bootup logo is centered both
18 horizontally and vertically. If more than one logo is displayed
19 due to multiple CPUs, the collected line of logos is centered
20 as a whole.
21
22config FB_LOGO_EXTRA
23 bool
24 depends on FB=y
25 default y if SPU_BASE
26
27config LOGO_LINUX_MONO
28 bool "Standard black and white Linux logo"
29 default y
30
31config LOGO_LINUX_VGA16
32 bool "Standard 16-color Linux logo"
33 default y
34
35config LOGO_LINUX_CLUT224
36 bool "Standard 224-color Linux logo"
37 default y
38
39config LOGO_DEC_CLUT224
40 bool "224-color Digital Equipment Corporation Linux logo"
41 depends on MACH_DECSTATION || ALPHA
42 default y
43
44config LOGO_MAC_CLUT224
45 bool "224-color Macintosh Linux logo"
46 depends on MAC
47 default y
48
49config LOGO_PARISC_CLUT224
50 bool "224-color PA-RISC Linux logo"
51 depends on PARISC
52 default y
53
54config LOGO_SGI_CLUT224
55 bool "224-color SGI Linux logo"
56 depends on SGI_IP22 || SGI_IP27 || SGI_IP32
57 default y
58
59config LOGO_SUN_CLUT224
60 bool "224-color Sun Linux logo"
61 depends on SPARC
62 default y
63
64config LOGO_SUPERH_MONO
65 bool "Black and white SuperH Linux logo"
66 depends on SUPERH
67 default y
68
69config LOGO_SUPERH_VGA16
70 bool "16-color SuperH Linux logo"
71 depends on SUPERH
72 default y
73
74config LOGO_SUPERH_CLUT224
75 bool "224-color SuperH Linux logo"
76 depends on SUPERH
77 default y
78
79endif # LOGO