diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2016-04-25 10:00:44 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2016-04-25 10:00:44 -0400 |
commit | a1df417e74aa6dae7352dc8cbb0ad471af5b7c69 (patch) | |
tree | c34b2311e37ea31db153c90cb8f4570374d05e78 /linux/arch/m32r/boot/compressed/vmlinux.lds.S |
initial Olimex linux tree from Daniel, originally Feb 3, 2016
Diffstat (limited to 'linux/arch/m32r/boot/compressed/vmlinux.lds.S')
-rw-r--r-- | linux/arch/m32r/boot/compressed/vmlinux.lds.S | 30 |
1 files changed, 30 insertions, 0 deletions
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); +} |