summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2025-09-02 11:35:38 -0400
committerJon Santmyer <jon@jonsantmyer.com>2025-09-02 11:35:38 -0400
commitd26eb8b54969e79d933a8e20f2725343cd42deab (patch)
tree9b6aaf6e84ed965d146c129028e32e00ef846adc /main.c
parent8f0ba2fd31408d04175513b8826bf9418ad8b087 (diff)
downloadjove-kernel-d26eb8b54969e79d933a8e20f2725343cd42deab.tar.gz
jove-kernel-d26eb8b54969e79d933a8e20f2725343cd42deab.tar.bz2
jove-kernel-d26eb8b54969e79d933a8e20f2725343cd42deab.zip
move limine to arch-specific directory.
untie boot code from non-boot code
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.c b/main.c
index 8dc7838..82cbbea 100644
--- a/main.c
+++ b/main.c
@@ -3,6 +3,7 @@
#include "memory.h"
#include "print.h"
#include "init.h"
+#include "boot.h"
#include "device/portio_uart.h"
#include "device/processor.h"
#include "device/initrd.h"
@@ -25,7 +26,7 @@ _jove_main(void)
#endif
bsp_setup();
- pmem_setup();
+ boot_populate_untyped();
vmem_setup();
#ifdef ENABLE_INITRD
initrd_setup();