diff options
Diffstat (limited to 'conf/user-link.ld')
-rw-r--r-- | conf/user-link.ld | 27 |
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 = .; - } -} - |