summaryrefslogtreecommitdiff
path: root/target/linux/brcm63xx/image/lzma-loader/src/decompress.lds.in
diff options
context:
space:
mode:
authorJonas Gorski <jogo@openwrt.org>2014-08-01 21:56:31 +0000
committerJonas Gorski <jogo@openwrt.org>2014-08-01 21:56:31 +0000
commit701e2a38fef4fce862eaeb21fc97874a6387a569 (patch)
treeff25cf2649946ea51b35d435138362c84e8129e7 /target/linux/brcm63xx/image/lzma-loader/src/decompress.lds.in
parent21845cb45da7b6da12fe977b38bfa68d4f72d9c1 (diff)
downloadmtk-20170518-701e2a38fef4fce862eaeb21fc97874a6387a569.zip
mtk-20170518-701e2a38fef4fce862eaeb21fc97874a6387a569.tar.gz
mtk-20170518-701e2a38fef4fce862eaeb21fc97874a6387a569.tar.bz2
brcm63xx: add working lzma-loader and use it for initramfs
Add a working lzma loader and use it for generating initramfs kernels to allow easily netbooting elf kernels on devices with a 4 MiB CFE size limit. Based on ar71xx's lzma-loader. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 41940
Diffstat (limited to 'target/linux/brcm63xx/image/lzma-loader/src/decompress.lds.in')
-rw-r--r--target/linux/brcm63xx/image/lzma-loader/src/decompress.lds.in20
1 files changed, 0 insertions, 20 deletions
diff --git a/target/linux/brcm63xx/image/lzma-loader/src/decompress.lds.in b/target/linux/brcm63xx/image/lzma-loader/src/decompress.lds.in
deleted file mode 100644
index 33f56f8..0000000
--- a/target/linux/brcm63xx/image/lzma-loader/src/decompress.lds.in
+++ /dev/null
@@ -1,20 +0,0 @@
-OUTPUT_ARCH(mips)
-ENTRY(entry)
-SECTIONS {
- . = BZ_TEXT_START;
- .text : {
- *(.text.entry)
- *(.text)
- *(.rodata)
- }
-
- .data : {
- *(.data)
- }
-
- .bss : {
- *(.bss)
- }
-
- workspace = .;
-}