From 392e8802486cb573b916e746010e141a75f507e6 Mon Sep 17 00:00:00 2001 From: Kevin Date: Sat, 15 Nov 2014 09:58:27 +0800 Subject: init android origin source code --- .../arch/cris/boot/compressed/decompress_v32.lds | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 ANDROID_3.4.5/arch/cris/boot/compressed/decompress_v32.lds (limited to 'ANDROID_3.4.5/arch/cris/boot/compressed/decompress_v32.lds') 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 new file mode 100644 index 00000000..3c837fec --- /dev/null +++ b/ANDROID_3.4.5/arch/cris/boot/compressed/decompress_v32.lds @@ -0,0 +1,30 @@ +/*#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 +} -- cgit