diff options
Diffstat (limited to 'ld/scripttempl/ebmon29k.sc')
-rw-r--r-- | ld/scripttempl/ebmon29k.sc | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/ld/scripttempl/ebmon29k.sc b/ld/scripttempl/ebmon29k.sc deleted file mode 100644 index 5079488..0000000 --- a/ld/scripttempl/ebmon29k.sc +++ /dev/null @@ -1,27 +0,0 @@ -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -${RELOCATING+ENTRY (start)} - -SECTIONS { - .text ${RELOCATING+${TEXT_START_ADDR}} : - { - *(.text); - ${RELOCATING+_etext = .}; - } - data ${RELOCATING+0x80002000} : - { - *(.data); - *(.mstack); - *(.shbss); - *(.rstack); - *(.mstack); - ${CONSTRUCTING+CONSTRUCTORS} - } - .bss . : - { - *(COMMON) - *(.bss); - ${RELOCATING+_end = .}; - } -} -EOF |