patch-2.1.109 linux/arch/sparc64/kernel/setup.c
Next file: linux/drivers/block/ide-pci.c
Previous file: linux/arch/sparc64/kernel/ebus.c
Back to the patch index
Back to the overall index
- Lines: 123
- Date:
Fri Jul 10 15:18:30 1998
- Orig file:
v2.1.108/linux/arch/sparc64/kernel/setup.c
- Orig date:
Thu Apr 23 20:21:32 1998
diff -u --recursive --new-file v2.1.108/linux/arch/sparc64/kernel/setup.c linux/arch/sparc64/kernel/setup.c
@@ -1,4 +1,4 @@
-/* $Id: setup.c,v 1.20 1998/02/24 17:02:39 jj Exp $
+/* $Id: setup.c,v 1.26 1998/07/08 10:21:15 jj Exp $
* linux/arch/sparc64/kernel/setup.c
*
* Copyright (C) 1995,1996 David S. Miller (davem@caip.rutgers.edu)
@@ -26,6 +26,7 @@
#include <linux/blk.h>
#include <linux/init.h>
#include <linux/inet.h>
+#include <linux/console.h>
#include <asm/segment.h>
#include <asm/system.h>
@@ -41,13 +42,15 @@
#include <net/ipconfig.h>
#endif
+#undef PROM_DEBUG_CONSOLE
+
struct screen_info screen_info = {
0, 0, /* orig-x, orig-y */
- { 0, 0, }, /* unused */
+ 0, /* unused */
0, /* orig-video-page */
0, /* orig-video-mode */
128, /* orig-video-cols */
- 0,0,0, /* ega_ax, ega_bx, ega_cx */
+ 0, 0, 0, /* unused, ega_bx, unused */
54, /* orig-video-lines */
0, /* orig-video-isVGA */
16 /* orig-video-points */
@@ -63,7 +66,9 @@
extern unsigned long sparc64_ttable_tl0;
#if CONFIG_SUN_CONSOLE
-extern void console_restore_palette(void);
+void console_restore_palette(void) {
+/* FIXME */
+}
#endif
asmlinkage void sys_sync(void); /* it's really int */
@@ -102,8 +107,7 @@
#define BOOTME_KGDB 0x4
#ifdef CONFIG_SUN_CONSOLE
-extern char *console_fb_path;
-static int console_fb = 0;
+static int console_fb __initdata = 0;
#endif
static unsigned long memory_size = 0;
@@ -191,7 +195,6 @@
prom_printf ("Using /dev/ttyb as console.\n");
} else {
console_fb = 1;
- console_fb_path = commands;
}
} else
#endif
@@ -235,21 +238,31 @@
char saved_command_line[256];
char reboot_command[256];
-unsigned long phys_base;
+extern unsigned long phys_base;
static struct pt_regs fake_swapper_regs = { { 0, }, 0, 0, 0, 0 };
-#if 0
-#include <linux/console.h>
+extern struct consw sun_serial_con;
-static void prom_cons_write(struct console *con, const char *str, unsigned count)
+#ifdef PROM_DEBUG_CONSOLE
+static void
+prom_console_write(struct console *con, const char *s, unsigned n)
{
- while (count--)
- prom_printf("%c", *str++);
+ prom_printf("%s", s);
}
static struct console prom_console = {
- "PROM", prom_cons_write, 0, 0, 0, 0, 0, CON_PRINTBUFFER, 0, 0, 0
+ "prom",
+ prom_console_write,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ NULL,
+ CON_PRINTBUFFER,
+ -1,
+ 0,
+ NULL
};
#endif
@@ -260,7 +273,7 @@
unsigned long lowest_paddr;
int total, i;
-#if 0
+#ifdef PROM_DEBUG_CONSOLE
register_console(&prom_console);
#endif
@@ -396,6 +409,13 @@
#else
serial_console = 0;
#endif
+ if (!serial_console) {
+#ifdef CONFIG_PROM_CONSOLE
+ conswitchp = &prom_con;
+#elif defined(CONFIG_DUMMY_CONSOLE)
+ conswitchp = &dummy_con;
+#endif
+ }
}
asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on)
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov