diff options
| author | Felix Fietkau <nbd@openwrt.org> | 2005-07-25 09:34:53 +0000 |
|---|---|---|
| committer | Felix Fietkau <nbd@openwrt.org> | 2005-07-25 09:34:53 +0000 |
| commit | 06ef24042b46e4463eaeaafa74193b9574922ede (patch) | |
| tree | cf0ef344d5505132458e73fe5d5856144e663eae /openwrt/target/linux/image/ar7/src/ld.script.in | |
| parent | ef18c8f1213ddf26de67421ecd0a5b3dc24060dd (diff) | |
| download | mtk-20170518-06ef24042b46e4463eaeaafa74193b9574922ede.zip mtk-20170518-06ef24042b46e4463eaeaafa74193b9574922ede.tar.gz mtk-20170518-06ef24042b46e4463eaeaafa74193b9574922ede.tar.bz2 | |
add ar7 lzma loader
SVN-Revision: 1557
Diffstat (limited to 'openwrt/target/linux/image/ar7/src/ld.script.in')
| -rw-r--r-- | openwrt/target/linux/image/ar7/src/ld.script.in | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/openwrt/target/linux/image/ar7/src/ld.script.in b/openwrt/target/linux/image/ar7/src/ld.script.in index 9a9f3ef..40389e6 100644 --- a/openwrt/target/linux/image/ar7/src/ld.script.in +++ b/openwrt/target/linux/image/ar7/src/ld.script.in @@ -5,15 +5,15 @@ ENTRY(tikernelunzip) { /* Allocate memory space on top of kernel bss space */ - . = _fbss; + . = 0x94200000; .text : { *(.text) - *(.rodata) - *(.rodata1) - *(.gnu.warning) - *(.text.init) - *(.data.init) + *(.rodata) + *(.rodata1) + *(.gnu.warning) + *(.text.init) + *(.data.init) } .data : @@ -21,21 +21,14 @@ ENTRY(tikernelunzip) *(*) } -bss : + .bss : { - inflate_bss_start = .; *(.dynbss) - *(.bss) - *(COMMON) - *(.sbss) - *(.scommon) - inflate_bss_end = .; + *(COMMON) + *(.bss) + *(.sbss) + *(.scommon) . = ALIGN (0x8000); - inflate_slide_window = .; - . += 0x8000; /* slide window is 8000h */ - inflate_free_memory_start = .; + workspace = .; } - - - } |
