Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 1894 → Rev 1895

/trunk/kernel/arch/sparc64/Makefile.inc
60,7 → 60,11
 
CONFIG_FB = y
 
## Compile with support for OpenFirmware device tree.
#
 
CONFIG_OFW_TREE = y
 
ifeq ($(MACHINE),enterprise)
## Compile with support for z8530 controller.
#
/trunk/kernel/arch/sparc64/src/sparc64.c
45,6 → 45,7
#include <arch/asm.h>
#include <arch/mm/page.h>
#include <arch/stack.h>
#include <genarch/ofw/ofw_tree.h>
#include <userspace.h>
 
bootinfo_t bootinfo;
64,6 → 65,8
/* Copy boot allocations info. */
ballocs.base = bootinfo.ballocs.base;
ballocs.size = bootinfo.ballocs.size;
ofw_tree_init(bootinfo.ofw_root);
}
 
void arch_pre_mm_init(void)