Container/Pager/Capability initialization that works.

Need to safely free boot memory and jump to first task's stack.
Need to test scheduler and all syscall entries.
This commit is contained in:
Bahadir Balban
2009-08-04 13:56:11 +03:00
parent 7e8845abf8
commit 519bfba8c7
12 changed files with 150 additions and 126 deletions

View File

@@ -72,11 +72,12 @@ SECTIONS
{
. = ALIGN(16K); /* For initial pgd */
*(.init.pgd)
*(.init.data)
*(.init.bootmem)
*(.init.data)
}
/* Space for boot stack */
. += 0x1000;
. = ALIGN(4K); /* A page aligned stack of at least 4KB */
_end_init = .;
_bootstack = .;
_end_kernel = .;