blob: 4efeaaa06940ca1ad983e31c67f2d8954e0b4225 (
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
|
/*======================================================================*/
/* 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" )
/* The ENTRY command specifies the entry point (ie. first instruction
to execute). The symbol _start should be defined in each test. */
ENTRY( _start )
/*----------------------------------------------------------------------*/
/* Sections */
/*----------------------------------------------------------------------*/
SECTIONS
{
/* text: test code section */
. = 0x00002000;
.text :
{
*(.text)
}
/* data: Initialized data segment */
.data ALIGN(0x2000):
{
*(.data)
}
/* bss: Initialized bss segment */
.bss ALIGN(0x2000):
{
*(.bss)
}
/* End of uninitalized bss segement */
_end = .;
}
|