summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2025-09-10 13:28:28 -0400
committerJon Santmyer <jon@jonsantmyer.com>2025-09-10 13:28:28 -0400
commit7f350e7ee1c2c38e5ac0b6c22c17388f6c78f0b5 (patch)
treeaef9904e2495ce840319f2815cd859c47294c88a /main.c
parent032a7bc4d79efea100a00cf3464bea3249a07ff6 (diff)
downloadjove-kernel-7f350e7ee1c2c38e5ac0b6c22c17388f6c78f0b5.tar.gz
jove-kernel-7f350e7ee1c2c38e5ac0b6c22c17388f6c78f0b5.tar.bz2
jove-kernel-7f350e7ee1c2c38e5ac0b6c22c17388f6c78f0b5.zip
refactor paging code. regression on loading init program
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/main.c b/main.c
index 82cbbea..579f68c 100644
--- a/main.c
+++ b/main.c
@@ -27,12 +27,11 @@ _jove_main(void)
bsp_setup();
boot_populate_untyped();
- vmem_setup();
+ mapping_setup_init();
#ifdef ENABLE_INITRD
initrd_setup();
#endif
- init_load();
kprintf("Reached end of kernel main!\n");
hcf();
}