source: mainline/boot/arch/riscv64/_link.ld.in@ 7a99507

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 7a99507 was 8b6aa39, checked in by Martin Decky <martin@…>, 9 years ago

dummy/fake support for RISC-V (RV64G)
it compiles and the boot loader extracts the system components, but otherwise the source serves only as a placeholder for future working implementation

  • Property mode set to 100644
File size: 408 bytes
Line 
1ENTRY(start)
2
3SECTIONS {
4 .text : {
5 *(BOOTSTRAP);
6 *(.text);
7 }
8
9 .data : {
10 *(.data); /* initialized data */
11 *(.rodata);
12 *(.rodata.*);
13 *(.sdata);
14 *(.reginfo);
15 *(.sbss);
16 *(.scommon);
17 *(.bss); /* uninitialized static variables */
18 *(COMMON); /* global variables */
19[[COMPONENTS]]
20 }
21
22 /DISCARD/ : {
23 *(.gnu.*);
24 *(.mdebug*);
25 *(.pdr);
26 *(.comment);
27 *(.note);
28 }
29}
Note: See TracBrowser for help on using the repository browser.