Gitiles
Code Review
Sign In
192.168.1.100
/
T108
/
c2023d5d03be91dbb983606f0ec5e9e4ea36c8c2
/
.
/
marvell
/
linux
/
arch
/
mips
/
lasat
/
image
/
romscript.normal
blob: 0864c963e188d6872385606ecaeb917d23319ccb [
file
] [
log
] [
blame
]
OUTPUT_ARCH
(
mips
)
SECTIONS
{
.
text
:
{
*(.
text
..
start
)
}
/* Data in ROM */
.
data ALIGN
(
0x10
)
:
{
*(.
data
)
}
_image_start
=
ADDR
(.
data
);
_image_size
=
SIZEOF
(.
data
);
.
other
:
{
*(.*)
}
}