From 97d88c32baf94a0f88499246e3a6d73b7a052449 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 26 Feb 2003 16:06:01 +0000 Subject: not used anymore, see app.lds git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3348 a1c6a512-1295-4272-9138-f99709370657 --- firmware/gdb.lds | 87 -------------------------------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 firmware/gdb.lds (limited to 'firmware') diff --git a/firmware/gdb.lds b/firmware/gdb.lds deleted file mode 100644 index 2055a63701..0000000000 --- a/firmware/gdb.lds +++ /dev/null @@ -1,87 +0,0 @@ -ENTRY(start) -OUTPUT_FORMAT(elf32-sh) -INPUT(crt0.o) - -MEMORY -{ - DRAM : ORIGIN = 0x09010000, LENGTH = 0x1f0000 - IRAM : ORIGIN = 0x0f000000, LENGTH = 0x1000 -} - -SECTIONS -{ - .vectors : - { - *(.resetvectors); - *(.vectors); - . = ALIGN(0x200); - *(.init.text) - } > DRAM - - .text : - { - *(.text) - } > DRAM - - .data : - { - *(.data) - } > DRAM - - .rodata : - { - *(.rodata) - *(.rodata.str1.4) - } > DRAM - - .stack : - { - *(.stack) - _stackbegin = .; - /* We put the copy of the .iram section here to save space */ - _iramcopy = .; - . += 0x2000; - _topramcopy = .; - . += 0x300; - _stackend = .; - } > DRAM - - .bss : - { - _edata = .; - *(.bss) - *(COMMON) - _end = .; - } > DRAM - - .heap : - { - _poolstart = .; - . = 0x20000; - _poolend = .; - } > DRAM - - .mp3buf : - { - _mp3buf = .; - } > DRAM - - .mp3end 0x09200000 - 0x300: - { - _mp3end = .; - } > DRAM - - .topram : AT ( _topramcopy ) { - _topramstart = .; - *(.topcode) - _topramend = .; - } > DRAM - - .iram 0xf000000 : AT ( _iramcopy ) - { - _iramstart = .; - *(.icode) - *(.idata) - _iramend = .; - } > IRAM -} -- cgit v1.2.3