aboutsummaryrefslogtreecommitdiffstats
path: root/target/image/brcm/lzma-loader/src/decompress.lds.in
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-06-21 14:02:29 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-06-21 14:02:29 +0000
commit913e09274d6e6056319d307a841ce9554085fb03 (patch)
treea16d02a1e5f3bbadde4f85f030dce15958e4ba6e /target/image/brcm/lzma-loader/src/decompress.lds.in
parentde6d89215358578ecc1905eaa1446cbd5d7d89c0 (diff)
downloadmaster-187ad058-913e09274d6e6056319d307a841ce9554085fb03.tar.gz
master-187ad058-913e09274d6e6056319d307a841ce9554085fb03.tar.bz2
master-187ad058-913e09274d6e6056319d307a841ce9554085fb03.zip
move target/linux/image to target/image
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4040 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/image/brcm/lzma-loader/src/decompress.lds.in')
-rw-r--r--target/image/brcm/lzma-loader/src/decompress.lds.in20
1 files changed, 20 insertions, 0 deletions
diff --git a/target/image/brcm/lzma-loader/src/decompress.lds.in b/target/image/brcm/lzma-loader/src/decompress.lds.in
new file mode 100644
index 0000000000..33f56f8a09
--- /dev/null
+++ b/target/image/brcm/lzma-loader/src/decompress.lds.in
@@ -0,0 +1,20 @@
+OUTPUT_ARCH(mips)
+ENTRY(entry)
+SECTIONS {
+ . = BZ_TEXT_START;
+ .text : {
+ *(.text.entry)
+ *(.text)
+ *(.rodata)
+ }
+
+ .data : {
+ *(.data)
+ }
+
+ .bss : {
+ *(.bss)
+ }
+
+ workspace = .;
+}