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 | 2eeb51ab4a025eebd3f5ba61892a8b0f5e1386bf (patch) | |
tree | a8fd719bb8dd58a372f7fb9ff4ff0569069230e1 /target/linux/image/ar7/src/ld.script.in | |
parent | ba4ba9de881df89a3de079e306b715201b212b1a (diff) | |
download | master-187ad058-2eeb51ab4a025eebd3f5ba61892a8b0f5e1386bf.tar.gz master-187ad058-2eeb51ab4a025eebd3f5ba61892a8b0f5e1386bf.tar.bz2 master-187ad058-2eeb51ab4a025eebd3f5ba61892a8b0f5e1386bf.zip |
add ar7 lzma loader
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1557 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/image/ar7/src/ld.script.in')
-rw-r--r-- | target/linux/image/ar7/src/ld.script.in | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/target/linux/image/ar7/src/ld.script.in b/target/linux/image/ar7/src/ld.script.in index 9a9f3ef4f4..40389e644f 100644 --- a/target/linux/image/ar7/src/ld.script.in +++ b/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 = .; } - - - } |