diff options
Diffstat (limited to 'ANDROID_3.4.5/arch/cris/boot/compressed/decompress_v32.lds')
-rw-r--r-- | ANDROID_3.4.5/arch/cris/boot/compressed/decompress_v32.lds | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/ANDROID_3.4.5/arch/cris/boot/compressed/decompress_v32.lds b/ANDROID_3.4.5/arch/cris/boot/compressed/decompress_v32.lds deleted file mode 100644 index 3c837fec..00000000 --- a/ANDROID_3.4.5/arch/cris/boot/compressed/decompress_v32.lds +++ /dev/null @@ -1,30 +0,0 @@ -/*#OUTPUT_FORMAT(elf32-us-cris) */ -OUTPUT_ARCH (crisv32) - -MEMORY - { - dram : ORIGIN = 0x40700000, - LENGTH = 0x00100000 - } - -SECTIONS -{ - .text : - { - _stext = . ; - *(.text) - *(.rodata) - *(.rodata.*) - _etext = . ; - } > dram - .data : - { - *(.data) - _edata = . ; - } > dram - .bss : - { - *(.bss) - _end = ALIGN( 0x10 ) ; - } > dram -} |