diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-05-30 10:35:27 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-05-30 10:35:27 +0000 |
commit | 12603cc0fbbfd50d11d764c2f91c3ae182a20d65 (patch) | |
tree | f01887d4e90bb875edb7b4effcbf283c4861090d /target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds | |
parent | a0dcd51d4e4e43a29e08674cfacec0ca8117cf3a (diff) |
Add board specific code, autodetect the kernel, fixes #1707, thanks Gabor Juhos
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7398 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds')
-rw-r--r-- | target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds b/target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds new file mode 100644 index 0000000000..f9358257c9 --- /dev/null +++ b/target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds @@ -0,0 +1,27 @@ +OUTPUT_ARCH(mips) +SECTIONS { + .text : { + _code_start = .; + *(.text) + *(.text.*) + *(.rodata) + *(.rodata.*) + } + + .data : { + *(.data) + *(.data.*) + } + _code_end = .; + + .bss : { + *(.bss) + *(.bss.*) + } + + . = ALIGN(16); + . = . + 8192; + _stack = .; + + workspace = .; +} |