mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 09:39:00 +00:00
97867f8717
This allows to load the resulting image directly from RouterBOOT. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34271
11 lines
108 B
Plaintext
11 lines
108 B
Plaintext
OUTPUT_ARCH(mips)
|
|
SECTIONS {
|
|
.text : {
|
|
startup = .;
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.data)
|
|
*(.data.*)
|
|
}
|
|
}
|