projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fresh fixes from Gabor Juhos : detects RouterBoot, Bootbase, improve board specification
[openwrt.git]
/
target
/
linux
/
adm5120-2.6
/
image
/
lzma-loader
/
src
/
loader.lds.in
diff --git
a/target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds.in
b/target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds.in
index
20f2ea9
..
8c1bb9b
100644
(file)
--- a/
target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds.in
+++ b/
target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds.in
@@
-1,17
+1,27
@@
OUTPUT_ARCH(mips)
OUTPUT_ARCH(mips)
-ENTRY(startup)
SECTIONS {
SECTIONS {
- . = TEXT_START;
.text : {
.text : {
+ _code_start = .;
*(.text)
*(.text)
+ *(.text.*)
*(.rodata)
*(.rodata)
+ *(.rodata.*)
+ _code_end = .;
}
.data : {
*(.data)
}
.data : {
*(.data)
+ *(.data.*)
}
.bss : {
*(.bss)
}
.bss : {
*(.bss)
+ *(.bss.*)
}
}
+
+ . = ALIGN(16);
+ . = . + 8192;
+ _stack = .;
+
+ workspace = .;
}
}
This page took
0.019701 seconds
and
4
git commands to generate.