diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-12-05 14:52:25 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-12-05 14:52:25 +0000 |
commit | d42968351fac42056852c71dbf58ae5c880c208c (patch) | |
tree | 28fa455ee170c9ecbddc6ffbe2aec705dec4090c /target/linux/ar71xx/image/lzma-loader/src/loader.lds | |
parent | f3d2056b81b7a92d28402c22736534d84fe23cfe (diff) | |
download | mtk-20170518-d42968351fac42056852c71dbf58ae5c880c208c.zip mtk-20170518-d42968351fac42056852c71dbf58ae5c880c208c.tar.gz mtk-20170518-d42968351fac42056852c71dbf58ae5c880c208c.tar.bz2 |
ar71xx: add lzma loader
SVN-Revision: 29443
Diffstat (limited to 'target/linux/ar71xx/image/lzma-loader/src/loader.lds')
-rw-r--r-- | target/linux/ar71xx/image/lzma-loader/src/loader.lds | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/target/linux/ar71xx/image/lzma-loader/src/loader.lds b/target/linux/ar71xx/image/lzma-loader/src/loader.lds new file mode 100644 index 0000000..80cc7ca --- /dev/null +++ b/target/linux/ar71xx/image/lzma-loader/src/loader.lds @@ -0,0 +1,35 @@ +OUTPUT_ARCH(mips) +SECTIONS { + .text : { + _code_start = .; + *(.text) + *(.text.*) + *(.rodata) + *(.rodata.*) + *(.data.lzma) + } + + . = ALIGN(32); + .data : { + *(.data) + *(.data.*) + . = . + 524288; /* workaround for buggy bootloaders */ + } + + . = ALIGN(32); + _code_end = .; + + _bss_start = .; + .bss : { + *(.bss) + *(.bss.*) + } + + . = ALIGN(32); + _bss_end = .; + + . = . + 8192; + _stack = .; + + workspace = .; +} |