summaryrefslogtreecommitdiff
path: root/kernel/usrbin/link.ld
diff options
context:
space:
mode:
authorJake Mannens <jake72360@gmail.com>2018-06-24 02:27:22 +1000
committerJake Mannens <jake72360@gmail.com>2018-06-24 02:27:22 +1000
commit97d3551106495fa18969e2690720b621ba5a9c0b (patch)
tree76967873f1f4209b940eadc77753bd67ef65e0b1 /kernel/usrbin/link.ld
parentacba87c1e946118f0ba4308a7211199cf9b7cbb2 (diff)
Re-structured the source tree and modified makefiles accordingly.
Hopefully further separation will help to keep the code readable and understandable.
Diffstat (limited to 'kernel/usrbin/link.ld')
-rw-r--r--kernel/usrbin/link.ld8
1 files changed, 0 insertions, 8 deletions
diff --git a/kernel/usrbin/link.ld b/kernel/usrbin/link.ld
deleted file mode 100644
index c1a7a42..0000000
--- a/kernel/usrbin/link.ld
+++ /dev/null
@@ -1,8 +0,0 @@
-OUTPUT_FORMAT(binary)
-SECTIONS
-{
- . = 0x100000;
- .text : { *(.entry); .*(.text) }
- .data : { *(.data) }
- .bss : { *(.bss) }
-}