From 12603cc0fbbfd50d11d764c2f91c3ae182a20d65 Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 30 May 2007 10:35:27 +0000 Subject: 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 --- .../adm5120-2.6/image/lzma-loader/src/loader.lds | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds (limited to 'target/linux/adm5120-2.6/image/lzma-loader/src/loader.lds') 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 = .; +} -- cgit v1.2.3