From ce13b28b90e8f7d8083658e083831c6528847099 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 1 Apr 2020 22:58:54 +0200 Subject: 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. --- src/userspace/linker.ld | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/userspace/linker.ld (limited to 'src/userspace/linker.ld') 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); + } +} -- cgit v1.2.3