From 4b8518b4e791c68154ec52badcc921b62afafb49 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 28 Apr 2020 18:32:36 +0200 Subject: Maaaany fixes... Sorry for the increasingly worse-getting commit messages :D --- src/kernel/fs/elf.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/kernel/fs/elf.c') diff --git a/src/kernel/fs/elf.c b/src/kernel/fs/elf.c index ec22d77..9ca98f0 100644 --- a/src/kernel/fs/elf.c +++ b/src/kernel/fs/elf.c @@ -25,7 +25,7 @@ struct process *elf_load(char *path) { uint8_t *file = read_file(path); if (!file) { - warn("File or directory not found: %s", file); + warn("File or directory not found: %s", path); return NULL; } @@ -40,8 +40,9 @@ struct process *elf_load(char *path) } struct process *proc = process_make_new(); - proc->name = "TEST"; + proc->name = "ROOT"; proc->registers.eip = header->entry; + paging_switch_directory(proc->cr3); uint32_t stk = (uint32_t)kmalloc_a(PAGE_S); proc->registers.useresp = 0x40000000 - (PAGE_S / 2); @@ -68,5 +69,6 @@ struct process *elf_load(char *path) } } + paging_switch_directory(paging_root_directory); return proc; } \ No newline at end of file -- cgit v1.2.3