projects
/
carl9170fw.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
wireless: align some HE capabilities with the spec
[carl9170fw.git]
/
minifw
/
miniboot.lds
1
ENTRY(_start);
2
3
MEMORY
4
{
5
pram : ORIGIN = 0x200000, LENGTH = 16k
6
}
7
8
SECTIONS
9
{
10
.padding : {
11
/* NOP NOP just in case */
12
LONG(0x00090009)
13
} > pram
14
15
.boot : { *(.boot) } > pram
16
.text : { *(.text*) } > pram
17
.rodata : { *(.rodata*) } > pram
18
.bss : { *(.bss) } > pram
19
.data : { *(.data*) } > pram
20
}