summaryrefslogtreecommitdiffstats
path: root/gdb/linker.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/linker.cfg')
-rw-r--r--gdb/linker.cfg28
1 files changed, 0 insertions, 28 deletions
diff --git a/gdb/linker.cfg b/gdb/linker.cfg
deleted file mode 100644
index 5d5334b92f..0000000000
--- a/gdb/linker.cfg
+++ /dev/null
@@ -1,28 +0,0 @@
-ENTRY(_start)
-OUTPUT_FORMAT(elf32-sh)
-SECTIONS
-{
- .vectors 0x09000000 :
- {
- *(.vectors);
- . = ALIGN(0x200);
- start.o(.text)
- *(.rodata)
- }
-
- .text :
- {
- *(.text)
- }
-
- .bss :
- {
- _stack = . + 0x1000;
- _stub_stack = _stack + 0x1000;
- }
-
- .pad 0x0900C800 :
- {
- LONG(0);
- }
- }