aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/elf.c
diff options
context:
space:
mode:
authorMarvin Borner2020-04-28 18:32:36 +0200
committerMarvin Borner2020-04-28 18:32:36 +0200
commit4b8518b4e791c68154ec52badcc921b62afafb49 (patch)
tree9c855266cf7451f503bf3cb849e63ac72ae48e74 /src/kernel/fs/elf.c
parent46007d2598b7aef13895b21669cfb6f24272e5fe (diff)
Maaaany fixes...
Sorry for the increasingly worse-getting commit messages :D
Diffstat (limited to 'src/kernel/fs/elf.c')
-rw-r--r--src/kernel/fs/elf.c6
1 files changed, 4 insertions, 2 deletions
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