diff options
author | Tom Rini <trini@konsulko.com> | 2019-01-15 22:05:05 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-01-15 22:05:05 -0500 |
commit | 0cd35f392000fb0783149d9b5f66c5f2e01bcbf1 (patch) | |
tree | b2bc80bd79b2ba7aa387abc575630b03b7470c36 /examples/standalone/riscv.lds | |
parent | e807f6b5f9a164dc1fc35e1c733fa343acf335c0 (diff) | |
parent | 91882c472d8c0aef4db699d3f2de55bf43d4ae4b (diff) |
Merge git://git.denx.de/u-boot-riscv
1. Improve cache implementation.
2. Fix and improve standalone applications
Diffstat (limited to 'examples/standalone/riscv.lds')
-rw-r--r-- | examples/standalone/riscv.lds | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/examples/standalone/riscv.lds b/examples/standalone/riscv.lds deleted file mode 100644 index 9a25861052..0000000000 --- a/examples/standalone/riscv.lds +++ /dev/null @@ -1,40 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0+ */ -/* - * Copyright (C) 2017 Andes Technology Corporation - * Rick Chen, Andes Technology Corporation <rick@andestech.com> - */ - -OUTPUT_ARCH(riscv) -ENTRY(_start) -SECTIONS -{ - . = ALIGN(4); - .text : - { - *(.text) - } - - . = ALIGN(4); - .data : { - __global_pointer$ = . + 0x800; - *(.data) - } - - . = ALIGN(4); - - .got : { - __got_start = .; - *(.got) - __got_end = .; - } - - . = ALIGN(4); - __bss_start = .; - .bss : { *(.bss) } - __bss_end = .; - - . = ALIGN(4); - .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) } - - _end = .; -} |