33848f14d3
(used if the boot loader wants a different loadaddr/entry) Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44014
16 lines
174 B
Text
16 lines
174 B
Text
OUTPUT_ARCH(mips)
|
|
SECTIONS {
|
|
.text : {
|
|
_code_start = .;
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.rodata)
|
|
*(.rodata.*)
|
|
*(.data)
|
|
*(.data.*)
|
|
}
|
|
|
|
. = ALIGN(32);
|
|
|
|
_code_end = .;
|
|
}
|