97867f8717
This allows to load the resulting image directly from RouterBOOT. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34271
10 lines
108 B
Text
10 lines
108 B
Text
OUTPUT_ARCH(mips)
|
|
SECTIONS {
|
|
.text : {
|
|
startup = .;
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.data)
|
|
*(.data.*)
|
|
}
|
|
}
|