blob: d16440c387b2add2fa8be7996d6e061b4c042023 (
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
|
ENTRY(main)
OUTPUT_FORMAT("binary")
SECTIONS
{
/* Not an ELF, but we need this to link with elfreloc.c.
* Not that we need to link with it, it's just easier that way */
_DYNAMIC = 0;
_image_base = 0;
. = 0x10000;
_bss_start = .;
.bss BLOCK(4K) : ALIGN(4K)
{
*(COMMON)
*(.bss)
}
_bss_end = .;
. = 2M;
.text BLOCK(4K) : ALIGN(4K)
{
/* the assert needs to be inside of a section or it'll be a syntax error */
ASSERT(_bss_end <= 2M, "bss too big, needs to be moved down");
*(.text.startup)
*(.text)
}
.rodata BLOCK(4K) : ALIGN(4K)
{
*(.rodata)
}
.data BLOCK(4K) : ALIGN(4K)
{
*(.data)
}
_initrd = .; /* is just appended onto the end of the binary */
/DISCARD/ : {
*(*.rel.*)
}
}
|