summaryrefslogtreecommitdiff
path: root/userspace/sys/linker.ld
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-17 02:28:02 +0200
committerMiguel <m.i@gmx.at>2018-08-17 02:28:02 +0200
commitc742be9c738c91703a7be787639cad167de3a6b1 (patch)
treedb0e170dab1b7f34630489d0cb1d396c92f15c79 /userspace/sys/linker.ld
parent559eea53ecdd1e3e45f24d15e8739419b0cd647a (diff)
started reviving my fool os
Diffstat (limited to 'userspace/sys/linker.ld')
-rw-r--r--userspace/sys/linker.ld37
1 files changed, 0 insertions, 37 deletions
diff --git a/userspace/sys/linker.ld b/userspace/sys/linker.ld
deleted file mode 100644
index 7c1c4bf..0000000
--- a/userspace/sys/linker.ld
+++ /dev/null
@@ -1,37 +0,0 @@
-ENTRY(_start)
-
-SECTIONS
-{
- . = 1M;
-
- kernel_start = .;
-
- .text BLOCK(4K) : ALIGN(4K)
- {
- *(.multiboot)
- *(.text)
- }
-
- /* Read-only data. */
- .rodata BLOCK(4K) : ALIGN(4K)
- {
- *(.rodata)
- }
-
- /* Read-write data (initialized) */
- .data BLOCK(4K) : ALIGN(4K)
- {
- *(.data)
- }
-
- /* Read-write data (uninitialized) and stack */
- .bss BLOCK(4K) : ALIGN(4K)
- {
- *(COMMON)
- *(.bss)
- *(.bootstrap_stack)
- }
-
- kernel_end = .;
-
-}