summaryrefslogtreecommitdiff
path: root/src/user/bootstrap
diff options
context:
space:
mode:
authordzwdz2023-02-25 18:10:39 +0100
committerdzwdz2023-02-25 18:10:39 +0100
commitfd9214efa47f721e6d08dd2530efbb40b99c3b7b (patch)
treeb8fb2f3c35599d2fb16bdfefaffdcc007476963f /src/user/bootstrap
parent5faf16e48457f3ea1dda7af76f9c59b007a054f8 (diff)
toolchain: working customized toolchain for userland bins
Diffstat (limited to 'src/user/bootstrap')
-rw-r--r--src/user/bootstrap/linker.ld6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/user/bootstrap/linker.ld b/src/user/bootstrap/linker.ld
index 34d8101..5d8abe7 100644
--- a/src/user/bootstrap/linker.ld
+++ b/src/user/bootstrap/linker.ld
@@ -26,11 +26,7 @@ SECTIONS
}
.data BLOCK(4K) : ALIGN(4K)
{
- *(.data)
+ *(.data*)
}
_initrd = .; /* is just appended onto the end of the binary */
-
- /DISCARD/ : {
- *(*.rel.*)
- }
}