patch-2.1.72 linux/kernel/printk.c
Next file: linux/kernel/sched.c
Previous file: linux/kernel/itimer.c
Back to the patch index
Back to the overall index
- Lines: 52
- Date:
Sun Dec 7 12:06:56 1997
- Orig file:
v2.1.71/linux/kernel/printk.c
- Orig date:
Thu Dec 4 14:53:57 1997
diff -u --recursive --new-file v2.1.71/linux/kernel/printk.c linux/kernel/printk.c
@@ -80,9 +80,9 @@
if ((c->options = strchr(str, ',')) != NULL)
*(c->options++) = 0;
#ifdef __sparc__
- if (strcmp(str, "ttya"))
+ if (!strcmp(str, "ttya"))
strcpy(c->name, "ttyS0");
- if (strcmp(str, "ttyb"))
+ if (!strcmp(str, "ttyb"))
strcpy(c->name, "ttyS1");
#endif
@@ -317,11 +317,13 @@
* that registers here.
*/
if (selected_console == 0) {
- console->flags |= CON_ENABLED | CON_FIRST;
- selected_console = 1;
- if (console->setup)
- console->setup(console, NULL);
+ if (console->setup == NULL ||
+ console->setup(console, NULL) == 0) {
+ console->flags |= CON_ENABLED | CON_FIRST;
+ selected_console = 1;
+ }
}
+
/*
* See if this console matches one we selected on
* the command line.
@@ -332,14 +334,19 @@
if (console->index >= 0 &&
console->index != console_cmdline[i].index)
continue;
+ if (console->index < 0) console->index = 0;
+ if (console->setup &&
+ console->setup(console, console_cmdline[i].options) != 0)
+ break;
console->flags |= CON_ENABLED;
console->index = console_cmdline[i].index;
if (i == 0)
console->flags |= CON_FIRST;
- if (console->setup)
- console->setup(console, console_cmdline[i].options);
break;
}
+
+ if (!(console->flags & CON_ENABLED))
+ return;
/*
* Put this console in the list - keep the
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov