X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=kernel%2Farch%2Fcris%2Fboot%2Fcompressed%2Fdecompress_v10.lds;fp=kernel%2Farch%2Fcris%2Fboot%2Fcompressed%2Fdecompress_v10.lds;h=e80f4594d54300cf22480725fd80856eddd2f04b;hb=9ca8dbcc65cfc63d6f5ef3312a33184e1d726e00;hp=0000000000000000000000000000000000000000;hpb=98260f3884f4a202f9ca5eabed40b1354c489b29;p=kvmfornfv.git diff --git a/kernel/arch/cris/boot/compressed/decompress_v10.lds b/kernel/arch/cris/boot/compressed/decompress_v10.lds new file mode 100644 index 000000000..e80f4594d --- /dev/null +++ b/kernel/arch/cris/boot/compressed/decompress_v10.lds @@ -0,0 +1,30 @@ +/* OUTPUT_FORMAT(elf32-us-cris) */ +OUTPUT_FORMAT(elf32-cris) + +MEMORY + { + dram : ORIGIN = 0x40700000, + LENGTH = 0x00100000 + } + +SECTIONS +{ + .text : + { + _stext = . ; + *(.text) + *(.rodata) + *(.rodata.*) + _etext = . ; + } > dram + .data : + { + *(.data) + _edata = . ; + } > dram + .bss : + { + *(.bss) + _end = ALIGN( 0x10 ) ; + } > dram +}