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/userspace | |
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/userspace')
-rw-r--r-- | src/userspace/linker.ld | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/userspace/linker.ld b/src/userspace/linker.ld new file mode 100644 index 0000000..7c2941f --- /dev/null +++ b/src/userspace/linker.ld @@ -0,0 +1,19 @@ +ENTRY(_start) + +SECTIONS { + .text 0x40000000 : { + *(.text) + . = ALIGN(4096); + } + + .data : { + *(.data) + *(.rodata) + . = ALIGN(4096); + } + + .bss : { + *(.bss) + . = ALIGN(4096); + } +} |