diff options
Diffstat (limited to 'src/user_bootstrap')
-rw-r--r-- | src/user_bootstrap/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user_bootstrap/main.c b/src/user_bootstrap/main.c index baa9803..71647c4 100644 --- a/src/user_bootstrap/main.c +++ b/src/user_bootstrap/main.c @@ -51,7 +51,7 @@ __attribute__((section(".text.startup"))) int main(void) { _syscall_memflag(&_bss_start, &_bss_end - &_bss_start, MEMFLAG_PRESENT); - void *init = tar_find(&_initrd, "test.elf"); + void *init = tar_find(&_initrd, "init.elf"); elf_exec(init); _syscall_debug_klog("bootstrap failed", sizeof("bootstrap failed")); |