repo.or.cz
/
linux-2.6
/
verdex.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[TG3]: Set minimal hw interrupt mitigation.
[linux-2.6/verdex.git]
/
arch
/
mips
/
lasat
/
image
/
romscript.normal
blob
ca22336f6c36db3bf58bfc40f54f8e2effe739ff
1
OUTPUT_ARCH(mips)
2
3
SECTIONS
4
{
5
.text :
6
{
7
*(.text.start)
8
}
9
10
/* Data in ROM */
11
12
.data ALIGN(0x10) :
13
{
14
*(.data)
15
}
16
_image_start = ADDR(.data);
17
_image_size = SIZEOF(.data);
18
19
.other : {
20
*(.*)
21
}
22
}