diff options
author | Danny Holman <dholman@gymli.org> | 2024-03-28 21:30:12 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.org> | 2024-03-28 21:30:12 -0500 |
commit | cbe2690cd5d1b290633c466ebb4df7b64b09b037 (patch) | |
tree | 99f77ef19f303c42c028be11cbb4210245b8a583 /kernel/init.c | |
parent | 891f1010bbdc1351bda8d2a6139094a14bdfd5e1 (diff) |
arch: i386: kernel: add mostly finished PFA and paging system
Add the mostly finished physical memory allocator and expose its
functions to the paging system.
Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'kernel/init.c')
-rw-r--r-- | kernel/init.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/init.c b/kernel/init.c index 86567a4..8512988 100644 --- a/kernel/init.c +++ b/kernel/init.c @@ -1,5 +1,5 @@ #include <kernel/io.h> -#include <kernel/mem.h> +#include <kernel/kmalloc.h> #include <kernel/string.h> #include <kernel/serial.h> @@ -8,6 +8,7 @@ void jump_userspace(void); char rootfs[1024]; int start_init(int argc, char* argv[]) { + while (1); return 0; } @@ -22,4 +23,5 @@ void process_cmd(char *cmdline) { void kernel_main(char *cmdline) { kprintf("Box Kernel version %s\n", VERSION); serial_init(); + kmalloc_init(); } |