Release 4.10 arch/um/kernel/early_printk.c
/*
* Copyright (C) 2011 Richard Weinberger <richrd@nod.at>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/kernel.h>
#include <linux/console.h>
#include <linux/init.h>
#include <os.h>
static void early_console_write(struct console *con, const char *s, unsigned int n)
{
um_early_printk(s, n);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
richard weinberger | richard weinberger | 27 | 100.00% | 1 | 100.00% |
| Total | 27 | 100.00% | 1 | 100.00% |
static struct console early_console_dev = {
.name = "earlycon",
.write = early_console_write,
.flags = CON_BOOT,
.index = -1,
};
static int __init setup_early_printk(char *buf)
{
if (!early_console) {
early_console = &early_console_dev;
register_console(&early_console_dev);
}
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
richard weinberger | richard weinberger | 19 | 59.38% | 1 | 50.00% |
thomas gleixner | thomas gleixner | 13 | 40.62% | 1 | 50.00% |
| Total | 32 | 100.00% | 2 | 100.00% |
early_param("earlyprintk", setup_early_printk);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
richard weinberger | richard weinberger | 92 | 85.98% | 1 | 33.33% |
thomas gleixner | thomas gleixner | 14 | 13.08% | 1 | 33.33% |
al viro | al viro | 1 | 0.93% | 1 | 33.33% |
| Total | 107 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.