patch-2.1.71 linux/init/main.c
Next file: linux/kernel/printk.c
Previous file: linux/include/linux/ufs_fs.h
Back to the patch index
Back to the overall index
- Lines: 36
- Date:
Wed Dec 3 15:21:57 1997
- Orig file:
v2.1.70/linux/init/main.c
- Orig date:
Tue Dec 2 16:45:20 1997
diff -u --recursive --new-file v2.1.70/linux/init/main.c linux/init/main.c
@@ -84,6 +84,7 @@
extern void panic_setup(char *str, int *ints);
extern void bmouse_setup(char *str, int *ints);
extern void msmouse_setup(char *str, int *ints);
+extern void console_setup(char *str, int *ints);
#ifdef CONFIG_PRINTER
extern void lp_setup(char *str, int *ints);
#endif
@@ -352,6 +353,7 @@
{ "swap=", swap_setup },
{ "buff=", buff_setup },
{ "panic=", panic_setup },
+ { "console=", console_setup },
#ifdef CONFIG_VT
{ "no-scroll", no_scroll },
#endif
@@ -1022,7 +1024,7 @@
close(0);close(1);close(2);
setsid();
- (void) open("/dev/tty1",O_RDWR,0);
+ (void) open("/dev/console",O_RDWR,0);
(void) dup(0);
(void) dup(0);
return execve(shell, argv, envp_init);
@@ -1106,8 +1108,8 @@
setup(1);
- if (open("/dev/console",O_RDWR,0) < 0)
- printk("Unable to open an initial console.\n");
+ if (open("/dev/console", O_RDWR, 0) < 0)
+ printk("Warning: unable to open an initial console.\n");
(void) dup(0);
(void) dup(0);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov