summaryrefslogtreecommitdiffstats
path: root/flash/bootloader/bootloader.lds
diff options
context:
space:
mode:
Diffstat (limited to 'flash/bootloader/bootloader.lds')
-rw-r--r--flash/bootloader/bootloader.lds34
1 files changed, 0 insertions, 34 deletions
diff --git a/flash/bootloader/bootloader.lds b/flash/bootloader/bootloader.lds
deleted file mode 100644
index ecc1268988..0000000000
--- a/flash/bootloader/bootloader.lds
+++ /dev/null
@@ -1,34 +0,0 @@
-OUTPUT_FORMAT(elf32-sh)
-
-MEMORY
-{
- /* the boot ROM uses IRAM at 400-430, stay away and start at 500 */
- IRAM : ORIGIN = 0x0FFFF500, LENGTH = 0xA00
- /* and leave some room for stack at the end */
-}
-
-SECTIONS
-{
- .startvector :
- {
- *(.startvector)
- . = ALIGN(0x4);
- } > IRAM
-
- .text :
- {
- *(.text)
- *(.icode)
- . = ALIGN(0x4);
- } > IRAM
-
- .data :
- {
- *(.data)
- } > IRAM
-
- .bss :
- {
- *(.bss)
- } > IRAM
-}