Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_universal7904
/
1da177e4c3f41524e886b7f1b8a0c1fc7321cac2
/
.
/
arch
/
mips
/
lasat
/
image
/
romscript.normal
blob: ca22336f6c36db3bf58bfc40f54f8e2effe739ff [
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
:
{
*(.*)
}
}