summaryrefslogtreecommitdiffstats
path: root/kernel.ld
blob: 45fb1615ab03b69442e87958b051c046c9d03170 (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
rom_offset = 0xfff00000;
base_load_address = 0x00000000;
text_load_address = 0x00008000;
hreset_load_address = 0x000ffffc;

SECTIONS
{
    . = base_load_address;

    .text.intvects ALIGN(0x1000): AT(base_load_address + rom_offset) {
	*(.text.intvects)
    }

    . = text_load_address;
    .text ALIGN(0x1000): {
	*(.text)
	*(.rodata)
	*(.rodata.*)
    }

    .data ALIGN(0x1000): {
	*(.data)
	*(.data.*)
	*(.branch_lt)
	*(.opd)

	*(.bss)
    }

    . = hreset_load_address;
    .text.hreset : {
	*(.text.hreset)
    }

    /DISCARD/ : {
	*(.comment)
	*(.gnu.attributes)
    }
}


OpenPOWER on IntegriCloud