blob: 33e79e96b2e37d7a8a06f5504f756c60c568f8ca (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
ENTRY(_stage2_main)
SECTIONS
{
/* see loader_stage1.S for details */
. = 0x4000;
__start = .;
loader_stage2 :
{
KEEP(loader_stage2.o(.text))
loader_stage2.o
uart.o
}
__end = .;
}
|