/* * 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 | 16 | 100.00% | 1 | 100.00% |
Total | 16 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
James Simmons | 167 | 78.04% | 2 | 18.18% |
Robin Getz | 22 | 10.28% | 1 | 9.09% |
Hirokazu Takata | 11 | 5.14% | 1 | 9.09% |
Randy Dunlap | 7 | 3.27% | 1 | 9.09% |
Tomi Valkeinen | 2 | 0.93% | 1 | 9.09% |
Antonino A. Daplas | 1 | 0.47% | 1 | 9.09% |
Fabian Frederick | 1 | 0.47% | 1 | 9.09% |
Andrew Morton | 1 | 0.47% | 1 | 9.09% |
H. Peter Anvin | 1 | 0.47% | 1 | 9.09% |
Mika Kukkonen | 1 | 0.47% | 1 | 9.09% |
Total | 214 | 100.00% | 11 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
James Simmons | 179 | 63.03% | 2 | 13.33% |
Tomi Valkeinen | 27 | 9.51% | 1 | 6.67% |
Randy Dunlap | 26 | 9.15% | 1 | 6.67% |
Robin Getz | 22 | 7.75% | 1 | 6.67% |
Hirokazu Takata | 11 | 3.87% | 1 | 6.67% |
Jon Smirl | 8 | 2.82% | 1 | 6.67% |
Linus Torvalds | 3 | 1.06% | 1 | 6.67% |
Fabian Frederick | 2 | 0.70% | 1 | 6.67% |
Rusty Russell | 1 | 0.35% | 1 | 6.67% |
Takeshi Kihara | 1 | 0.35% | 1 | 6.67% |
Mika Kukkonen | 1 | 0.35% | 1 | 6.67% |
Andrew Morton | 1 | 0.35% | 1 | 6.67% |
H. Peter Anvin | 1 | 0.35% | 1 | 6.67% |
Antonino A. Daplas | 1 | 0.35% | 1 | 6.67% |
Total | 284 | 100.00% | 15 | 100.00% |