diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-01 20:07:42 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-01 20:07:42 +0000 |
commit | 4899b6c69641f146b910e1924cffa6dca0bc75a0 (patch) | |
tree | 5062f03571be6586725837858676531047c496d3 /target/linux/image/brcm/lzma-loader/src/decompress.lds.in | |
parent | a0e5e135ed53c42488a66de5d1b7d38fb980008a (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/decompress.lds.in')
-rw-r--r-- | target/linux/image/brcm/lzma-loader/src/decompress.lds.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/image/brcm/lzma-loader/src/decompress.lds.in b/target/linux/image/brcm/lzma-loader/src/decompress.lds.in new file mode 100644 index 000000000..33f56f8a0 --- /dev/null +++ b/target/linux/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 = .; +} |