/* * 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 | 92.27% | 2 | 22.22% |
Randy Dunlap | 7 | 3.87% | 1 | 11.11% |
Tomi Valkeinen | 2 | 1.10% | 1 | 11.11% |
H. Peter Anvin | 1 | 0.55% | 1 | 11.11% |
Andrew Morton | 1 | 0.55% | 1 | 11.11% |
Mika Kukkonen | 1 | 0.55% | 1 | 11.11% |
Fabian Frederick | 1 | 0.55% | 1 | 11.11% |
Antonino A. Daplas | 1 | 0.55% | 1 | 11.11% |
Total | 181 | 100.00% | 9 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
James Simmons | 179 | 71.31% | 2 | 15.38% |
Tomi Valkeinen | 27 | 10.76% | 1 | 7.69% |
Randy Dunlap | 26 | 10.36% | 1 | 7.69% |
Jon Smirl | 8 | 3.19% | 1 | 7.69% |
Linus Torvalds | 3 | 1.20% | 1 | 7.69% |
Fabian Frederick | 2 | 0.80% | 1 | 7.69% |
Antonino A. Daplas | 1 | 0.40% | 1 | 7.69% |
Takeshi Kihara | 1 | 0.40% | 1 | 7.69% |
Mika Kukkonen | 1 | 0.40% | 1 | 7.69% |
H. Peter Anvin | 1 | 0.40% | 1 | 7.69% |
Rusty Russell | 1 | 0.40% | 1 | 7.69% |
Andrew Morton | 1 | 0.40% | 1 | 7.69% |
Total | 251 | 100.00% | 13 | 100.00% |