summaryrefslogtreecommitdiff
path: root/userspace/sys
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-22 16:43:51 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-22 16:43:51 +0100
commitc4aa91d9d58a47eb90798ae1ae6647953d3745a2 (patch)
tree2745079a8d62c2d414720775d073cb95106a95cc /userspace/sys
parent795b1f7df203ae33e1d0eb13612f0ba2abf4351e (diff)
support for ELF (with 1*text and 1*data)!
Diffstat (limited to 'userspace/sys')
-rw-r--r--userspace/sys/oldlinker.ld25
1 files changed, 0 insertions, 25 deletions
diff --git a/userspace/sys/oldlinker.ld b/userspace/sys/oldlinker.ld
deleted file mode 100644
index 4eee8eb..0000000
--- a/userspace/sys/oldlinker.ld
+++ /dev/null
@@ -1,25 +0,0 @@
-OUTPUT_FORMAT(binary)
-
-SECTIONS
-{
- . = 0x800000;
-
- .text : ALIGN(0x1000) {
- _TEXT_START_ = .;
- *(.text)
- _TEXT_END_ = .;
- }
-
- .data : ALIGN(0x1000) {
- _DATA_START_ = .;
- *(.data)
- _DATA_END_ = .;
- }
-
- .bss : ALIGN(0x1000) {
- _BSS_START_ = .;
- *(.bss)
- _BSS_END_ = .;
- }
-
-}