Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3865 → Rev 3864

/trunk/kernel/arch/sparc64/src/console.c
69,7 → 69,6
*/
static void standard_console_init(ofw_tree_node_t *aliases)
{
#ifdef CONFIG_FB
stdin = NULL;
 
ofw_tree_property_t *prop;
97,10 → 96,6
panic("Cannot find %s.", prop->value);
 
kbd_init(keyboard);
#else
panic("Standard console requires FB, "
"but the kernel is not compiled with FB support.");
#endif
}
 
/** Initilize I/O on the Serengeti machine. */
180,9 → 175,7
*/
void arch_grab_console(void)
{
#ifdef CONFIG_FB
scr_redraw();
#endif
switch (kbd_type) {
#ifdef CONFIG_Z8530
case KBD_Z8530:
/trunk/kernel/arch/sparc64/Makefile.inc
64,9 → 64,7
## Compile with support for framebuffer.
#
 
ifeq ($(MACHINE),us)
CONFIG_FB = y
endif
CONFIG_FB = y
 
## Compile with support for Sun keyboard.
#
119,13 → 117,10
arch/$(ARCH)/src/ddi/ddi.c \
arch/$(ARCH)/src/drivers/tick.c \
arch/$(ARCH)/src/drivers/kbd.c \
arch/$(ARCH)/src/drivers/scr.c \
arch/$(ARCH)/src/drivers/sgcn.c \
arch/$(ARCH)/src/drivers/pci.c
 
ifeq ($(CONFIG_FB),y)
ARCH_SOURCES += \
arch/$(ARCH)/src/drivers/scr.c
endif
 
ifeq ($(CONFIG_SMP),y)
ARCH_SOURCES += \