mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-14 21:56:16 +02:00
17c7b6c3fd
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8653 3c298f89-4303-0410-b956-a3cf2f4a3e73
30 lines
302 B
Plaintext
30 lines
302 B
Plaintext
OUTPUT_ARCH(mips)
|
|
SECTIONS {
|
|
.text : {
|
|
_code_start = .;
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.rodata)
|
|
*(.rodata.*)
|
|
. = ALIGN(16);
|
|
*(.data.lzma)
|
|
}
|
|
|
|
.data : {
|
|
*(.data)
|
|
*(.data.*)
|
|
}
|
|
_code_end = .;
|
|
|
|
.bss : {
|
|
*(.bss)
|
|
*(.bss.*)
|
|
}
|
|
|
|
. = ALIGN(16);
|
|
. = . + 8192;
|
|
_stack = .;
|
|
|
|
workspace = .;
|
|
}
|