summaryrefslogtreecommitdiffstats
path: root/target/linux/image/brcm/lzma-loader/src/loader.lds.in
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-09-01 20:07:42 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-09-01 20:07:42 +0000
commit4899b6c69641f146b910e1924cffa6dca0bc75a0 (patch)
tree5062f03571be6586725837858676531047c496d3 /target/linux/image/brcm/lzma-loader/src/loader.lds.in
parenta0e5e135ed53c42488a66de5d1b7d38fb980008a (diff)
move lzma loader source in cvs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1823 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/image/brcm/lzma-loader/src/loader.lds.in')
-rw-r--r--target/linux/image/brcm/lzma-loader/src/loader.lds.in17
1 files changed, 17 insertions, 0 deletions
diff --git a/target/linux/image/brcm/lzma-loader/src/loader.lds.in b/target/linux/image/brcm/lzma-loader/src/loader.lds.in
new file mode 100644
index 000000000..20f2ea98e
--- /dev/null
+++ b/target/linux/image/brcm/lzma-loader/src/loader.lds.in
@@ -0,0 +1,17 @@
+OUTPUT_ARCH(mips)
+ENTRY(startup)
+SECTIONS {
+ . = TEXT_START;
+ .text : {
+ *(.text)
+ *(.rodata)
+ }
+
+ .data : {
+ *(.data)
+ }
+
+ .bss : {
+ *(.bss)
+ }
+}