diff options
Diffstat (limited to 'src/kernel/kernel.c')
-rw-r--r-- | src/kernel/kernel.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c index 90b967f..8056055 100644 --- a/src/kernel/kernel.c +++ b/src/kernel/kernel.c @@ -67,14 +67,8 @@ void kernel_main(uint32_t magic, uint32_t multiboot_address, uint32_t esp) printf("Content of /etc/test: %s", read_file("/etc/test")); syscalls_install(); - struct process *proc = elf_load("/bin/init"); - if (proc) { - proc->stdin = NULL; - proc->stdout = NULL; - proc->stderr = NULL; - process_init(proc); - } + kexec("/bin/init"); halt_loop(); // asm ("div %0" :: "r"(0)); // Exception testing x/0 -}
\ No newline at end of file +} |