summaryrefslogtreecommitdiff
path: root/src/user_bootstrap/linker.ld
diff options
context:
space:
mode:
authordzwdz2022-07-26 00:38:45 +0200
committerdzwdz2022-07-26 00:38:45 +0200
commit90af8825a41981ce2ee52e0a9ce84f624eb022e6 (patch)
treeaed82a8ca12fdaaa960adac98afecd62a8d81ec8 /src/user_bootstrap/linker.ld
parent9352abbed0f1266f511f170517a4094c6c4ff917 (diff)
move user_bootstrap to user/bootstrap for consistency's sake
Diffstat (limited to 'src/user_bootstrap/linker.ld')
-rw-r--r--src/user_bootstrap/linker.ld37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/user_bootstrap/linker.ld b/src/user_bootstrap/linker.ld
deleted file mode 100644
index 917388c..0000000
--- a/src/user_bootstrap/linker.ld
+++ /dev/null
@@ -1,37 +0,0 @@
-ENTRY(main)
-OUTPUT_FORMAT("binary")
-
-SECTIONS
-{
- /* Not an ELF, but we need this to link with elfreloc.c.
- * Not that we need to link with it, it's just easier that way */
- _DYNAMIC = 0;
- _image_base = 0;
-
- . = 2M;
- .text BLOCK(4K) : ALIGN(4K)
- {
- *(.text.startup)
- *(.text)
- }
- .rodata BLOCK(4K) : ALIGN(4K)
- {
- *(.rodata)
- }
- .data BLOCK(4K) : ALIGN(4K)
- {
- *(.data)
- }
-
- . = ALIGN(32); /* seems to be necessary? */
- _initrd = .; /* is just appended onto the end of the binary */
- . += 2M;
-
- _bss_start = .;
- .bss BLOCK(4K) : ALIGN(4K)
- {
- *(COMMON)
- *(.bss)
- }
- _bss_end = .;
-}