diff --git a/kernel/src/kmain.rs b/kernel/src/kmain.rs index f4f0c65..8bd3972 100644 --- a/kernel/src/kmain.rs +++ b/kernel/src/kmain.rs @@ -37,6 +37,11 @@ pub fn kmain(cmdline: &str, bootstrap: Option<&'static [u8]>) -> ! { let dt = DEVICE_TREE.lock(); log::info!("Device Tree{}", dt); + log::info!("Boot complete. Moving to init_system"); + + // TODO: schedule the disk driver from the initramfs + // TODO: schedule the filesystem driver from the initramfs + // TODO: schedule the init system from the initramfs let bytes = alloc::vec![0]; let mut prog = Engine::new(bytes);