blob: 816c948d691519d2f56e2fe22e553969cabcc949 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*======================================================================*/
/* Proxy kernel linker script */
/*======================================================================*/
/* This is the linker script used when building the proxy kernel. */
/*----------------------------------------------------------------------*/
/* Setup */
/*----------------------------------------------------------------------*/
/* The OUTPUT_ARCH command specifies the machine architecture where the
argument is one of the names used in the BFD library. More
specifically one of the entires in bfd/cpu-mips.c */
OUTPUT_ARCH( "riscv" )
/*----------------------------------------------------------------------*/
/* Sections */
/*----------------------------------------------------------------------*/
SECTIONS
{
/* text: test code section */
. = 0;
.text :
{
crt.o(.text)
*(.text)
}
/* data segmemt */
.data : { *(.data) }
.bss : { *(.bss) }
/* thread-local data segment */
.tdata :
{
_tls_data = .;
crt.o(.tdata.begin)
*(.tdata)
crt.o(.tdata.end)
}
.tbss :
{
*(.tbss)
crt.o(.tbss.end)
}
/* End of uninitalized data segement */
_end = .;
}
|