diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-07-15 19:40:55 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-07-24 21:20:13 +0000 |
commit | 092c340a2062fa98b7387fc5fd63578ddae7d0b6 (patch) | |
tree | 98ec96946eeb2ae709cb0528cc6998e21bb9b290 /flash/bootloader/no_rom.lds | |
parent | 17f7cc92c258bc456a27c3e7c5a19c9409851879 (diff) | |
download | rockbox-092c340a2062fa98b7387fc5fd63578ddae7d0b6.tar.gz rockbox-092c340a2062fa98b7387fc5fd63578ddae7d0b6.zip |
[1/4] Remove SH support and all archos targets
This removes all code specific to SH targets
Change-Id: I7980523785d2596e65c06430f4638eec74a06061
Diffstat (limited to 'flash/bootloader/no_rom.lds')
-rw-r--r-- | flash/bootloader/no_rom.lds | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/flash/bootloader/no_rom.lds b/flash/bootloader/no_rom.lds deleted file mode 100644 index 9f6af52aef..0000000000 --- a/flash/bootloader/no_rom.lds +++ /dev/null | |||
@@ -1,62 +0,0 @@ | |||
1 | /* This is for the variant without boot ROM, | ||
2 | where the flash ROM is mirrored to address zero */ | ||
3 | |||
4 | OUTPUT_FORMAT(elf32-sh) | ||
5 | |||
6 | MEMORY | ||
7 | { | ||
8 | IRAM : ORIGIN = 0x0FFFF000, LENGTH = 0x1000 | ||
9 | FLASH : ORIGIN = 0x00000000, LENGTH = 0x40000 | ||
10 | } | ||
11 | |||
12 | SECTIONS | ||
13 | { | ||
14 | .vectors : | ||
15 | { | ||
16 | KEEP(*(.vectors)) | ||
17 | . = ALIGN(0x200); | ||
18 | } > FLASH | ||
19 | |||
20 | .startup : | ||
21 | { | ||
22 | *(.startup) | ||
23 | . = ALIGN(0x4); | ||
24 | _begin_iramcopy = .; | ||
25 | } > FLASH | ||
26 | |||
27 | .text : AT ( _begin_iramcopy ) | ||
28 | { | ||
29 | _begin_text = .; | ||
30 | *(.text) | ||
31 | *(.icode) | ||
32 | . = ALIGN(0x4); | ||
33 | _end_text = .; | ||
34 | } > IRAM | ||
35 | |||
36 | .data : AT ( _end_text ) | ||
37 | { | ||
38 | _begin_data = .; | ||
39 | *(.data) | ||
40 | . = ALIGN(0x4); | ||
41 | _end_data = .; | ||
42 | } > IRAM | ||
43 | |||
44 | .bss : AT ( _end_data ) | ||
45 | { | ||
46 | _begin_bss = .; | ||
47 | *(.bss) | ||
48 | . = ALIGN(0x4); | ||
49 | _end_bss = .; | ||
50 | } > IRAM | ||
51 | |||
52 | .stack : | ||
53 | { | ||
54 | _begin_stack = .; | ||
55 | *(.stack) | ||
56 | . = ALIGN(0x1000); | ||
57 | _end_stack = .; | ||
58 | } > IRAM | ||
59 | |||
60 | /* size of the program (without vectors) */ | ||
61 | _total_size = SIZEOF(.startup) + SIZEOF(.text) + SIZEOF(.data); | ||
62 | } | ||