diff options
Diffstat (limited to 'arch/cris/boot/rescue/rescue_v10.lds')
-rw-r--r-- | arch/cris/boot/rescue/rescue_v10.lds | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/cris/boot/rescue/rescue_v10.lds b/arch/cris/boot/rescue/rescue_v10.lds new file mode 100644 index 0000000..0b52a94 --- /dev/null +++ b/arch/cris/boot/rescue/rescue_v10.lds @@ -0,0 +1,20 @@ +MEMORY + { + flash : ORIGIN = 0x00000000, + LENGTH = 0x00100000 + } + +SECTIONS +{ + .text : + { + stext = . ; + *(.text) + etext = . ; + } > flash + .data : + { + *(.data) + edata = . ; + } > flash +} |