diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-01-07 15:25:26 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-01-07 15:25:26 +0000 |
commit | c2186314d687f8408d63960b0d9612ce4032f42d (patch) | |
tree | 6326a2284e03101b6391e4ee5187bdfe3beb0fa9 /target/linux/brcm-2.4/image/lzma-loader/src/decompress.lds.in | |
parent | b2c879a94fa88a984993b35e9f20b2e4dcb55a3a (diff) | |
download | upstream-c2186314d687f8408d63960b0d9612ce4032f42d.tar.gz upstream-c2186314d687f8408d63960b0d9612ce4032f42d.tar.bz2 upstream-c2186314d687f8408d63960b0d9612ce4032f42d.zip |
move brcm-2.6/image to brcm-2.4, to reduce the cross-dependencies between those two. symlink will be added in the next commit (i don't think svn can do that change atomically)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6013 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm-2.4/image/lzma-loader/src/decompress.lds.in')
-rw-r--r-- | target/linux/brcm-2.4/image/lzma-loader/src/decompress.lds.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/brcm-2.4/image/lzma-loader/src/decompress.lds.in b/target/linux/brcm-2.4/image/lzma-loader/src/decompress.lds.in new file mode 100644 index 0000000000..33f56f8a09 --- /dev/null +++ b/target/linux/brcm-2.4/image/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 = .; +} |