mirror of
https://github.com/drasko/codezero.git
synced 2026-02-04 14:03:16 +01:00
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:
@@ -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 = .;
|
||||
|
||||
Reference in New Issue
Block a user