diff options
author | Marvin Borner | 2020-04-01 22:58:54 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-01 22:58:54 +0200 |
commit | ce13b28b90e8f7d8083658e083831c6528847099 (patch) | |
tree | 54882764e8bdad831c6a787b7c1d5d52d1ae4f48 /src/kernel/fs/elf.h | |
parent | f79ada76d2e4056ff5a81b53998d6d2696523d0f (diff) |
Static address linking approach for userspace
Kinda works but loading an statically linked binary into memory via
kmalloc seems to create a crash which results in a bootloop.
Diffstat (limited to 'src/kernel/fs/elf.h')
-rw-r--r-- | src/kernel/fs/elf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/fs/elf.h b/src/kernel/fs/elf.h index ee89000..7e599b8 100644 --- a/src/kernel/fs/elf.h +++ b/src/kernel/fs/elf.h @@ -51,4 +51,4 @@ typedef struct { int is_elf(char *data); uint32_t load_elf(char *elf_data); -#endif +#endif
\ No newline at end of file |