aboutsummaryrefslogtreecommitdiff
path: root/conf/user-link.ld
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-06-24 22:55:29 -0400
committerIan Moffett <ian@osmora.org>2024-06-24 22:55:29 -0400
commit236963e7563be3e3f8220dac7bb4af446928e194 (patch)
treee521ea226db0345bbb3679fffe09d96254b7dc73 /conf/user-link.ld
parent214eadc62b5578f76c98a38a28f8b3d80ac4d6ad (diff)
Clean out for expt
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'conf/user-link.ld')
-rw-r--r--conf/user-link.ld27
1 files changed, 0 insertions, 27 deletions
diff --git a/conf/user-link.ld b/conf/user-link.ld
deleted file mode 100644
index 9bbe6ae..0000000
--- a/conf/user-link.ld
+++ /dev/null
@@ -1,27 +0,0 @@
-ENTRY(_start)
-
-SECTIONS
-{
- . = 0x10000;
-
- .text :
- {
- *(.text)
- *(.text.*)
- }
-
- .data : ALIGN(8)
- {
- *(.data)
- *(.data.*)
- }
-
- .bss : ALIGN(8)
- {
- __bss_start = .;
- *(.bss)
- *(.bss.*)
- __bss_end = .;
- }
-}
-