/* * Linux logo to be displayed on boot * * Copyright (C) 1996 Larry Ewing (lewing@isc.tamu.edu) * Copyright (C) 1996,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz) * Copyright (C) 2001 Greg Banks <gnb@alphalink.com.au> * Copyright (C) 2001 Jan-Benedict Glaw <jbglaw@lug-owl.de> * Copyright (C) 2003 Geert Uytterhoeven <geert@linux-m68k.org> */ #include <linux/linux_logo.h> #include <linux/stddef.h> #include <linux/module.h> #ifdef CONFIG_M68K #include <asm/setup.h> #endif static bool nologo; module_param(nologo, bool, 0); MODULE_PARM_DESC(nologo, "Disables startup logo"); /* * Logos are located in the initdata, and will be freed in kernel_init. * Use late_init to mark the logos as freed to prevent any further use. */ static bool logos_freed;
static int __init fb_logo_late_init(void) { logos_freed = true; return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
tomi valkeinen | tomi valkeinen | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
james simmons | james simmons | 167 | 78.04% | 2 | 18.18% |
robin getz | robin getz | 22 | 10.28% | 1 | 9.09% |
hirokazu takata* | hirokazu takata* | 11 | 5.14% | 1 | 9.09% |
randy dunlap | randy dunlap | 7 | 3.27% | 1 | 9.09% |
tomi valkeinen | tomi valkeinen | 2 | 0.93% | 1 | 9.09% |
h. peter anvin | h. peter anvin | 1 | 0.47% | 1 | 9.09% |
antonino daplas | antonino daplas | 1 | 0.47% | 1 | 9.09% |
sam ravnborg | sam ravnborg | 1 | 0.47% | 1 | 9.09% |
andrew morton | andrew morton | 1 | 0.47% | 1 | 9.09% |
mika kukkonen | mika kukkonen | 1 | 0.47% | 1 | 9.09% |
Total | 214 | 100.00% | 11 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
james simmons | james simmons | 179 | 63.03% | 2 | 14.29% |
tomi valkeinen | tomi valkeinen | 28 | 9.86% | 1 | 7.14% |
randy dunlap | randy dunlap | 26 | 9.15% | 1 | 7.14% |
robin getz | robin getz | 22 | 7.75% | 1 | 7.14% |
hirokazu takata* | hirokazu takata* | 11 | 3.87% | 1 | 7.14% |
jon smirl | jon smirl | 8 | 2.82% | 1 | 7.14% |
linus torvalds | linus torvalds | 3 | 1.06% | 1 | 7.14% |
sam ravnborg | sam ravnborg | 2 | 0.70% | 1 | 7.14% |
mika kukkonen | mika kukkonen | 1 | 0.35% | 1 | 7.14% |
rusty russell | rusty russell | 1 | 0.35% | 1 | 7.14% |
h. peter anvin | h. peter anvin | 1 | 0.35% | 1 | 7.14% |
andrew morton | andrew morton | 1 | 0.35% | 1 | 7.14% |
antonino daplas | antonino daplas | 1 | 0.35% | 1 | 7.14% |
Total | 284 | 100.00% | 14 | 100.00% |