From a1df417e74aa6dae7352dc8cbb0ad471af5b7c69 Mon Sep 17 00:00:00 2001 From: "Michael J. Chudobiak" Date: Mon, 25 Apr 2016 10:00:44 -0400 Subject: initial Olimex linux tree from Daniel, originally Feb 3, 2016 --- linux/arch/m32r/boot/compressed/vmlinux.lds.S | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 linux/arch/m32r/boot/compressed/vmlinux.lds.S (limited to 'linux/arch/m32r/boot/compressed/vmlinux.lds.S') diff --git a/linux/arch/m32r/boot/compressed/vmlinux.lds.S b/linux/arch/m32r/boot/compressed/vmlinux.lds.S new file mode 100644 index 00000000..dd11963f --- /dev/null +++ b/linux/arch/m32r/boot/compressed/vmlinux.lds.S @@ -0,0 +1,30 @@ + +OUTPUT_ARCH(m32r) +ENTRY(startup) +SECTIONS +{ + . = CONFIG_MEMORY_START + 0x00400000; + + _text = .; + .text : { *(.text) } = 0 + .rodata : { *(.rodata) *(.rodata.*) } + _etext = .; + + . = ALIGN(32 / 8); + .data : { *(.data) } + . = ALIGN(32 / 8); + _got = .; + .got : { *(.got) _egot = .; *(.got.*) } + _edata = .; + + . = ALIGN(32 / 8); + __bss_start = .; + .bss : { *(.bss) *(.sbss) } + . = ALIGN(32 / 8); + _ebss = .; + . = ALIGN(4096); + . += 4096; + end = . ; + + got_len = (_egot - _got); +} -- cgit