diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-06-14 07:03:57 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-06-14 07:03:57 +0000 |
commit | 26118ce258fcf8c31088fb4e160dc25ba281f30a (patch) | |
tree | 072f31efea95e9e75d48a8cbbf9fd690b6b42044 /target/linux/image/ar7/src/ld.script.in | |
parent | 7202efd0779f3707d7d5e1e663860144fea0574e (diff) |
add incomplete ar7 hardware support (disabled by default)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1236 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 | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/target/linux/image/ar7/src/ld.script.in b/target/linux/image/ar7/src/ld.script.in new file mode 100644 index 0000000000..9a9f3ef4f4 --- /dev/null +++ b/target/linux/image/ar7/src/ld.script.in @@ -0,0 +1,41 @@ + OUTPUT_FORMAT("@@OUTPUT_FORMAT@@") + OUTPUT_ARCH(mips) +ENTRY(tikernelunzip) + SECTIONS +{ + + /* Allocate memory space on top of kernel bss space */ + . = _fbss; + .text : + { + *(.text) + *(.rodata) + *(.rodata1) + *(.gnu.warning) + *(.text.init) + *(.data.init) + } + + .data : + { + *(*) + } + +bss : + { + inflate_bss_start = .; + *(.dynbss) + *(.bss) + *(COMMON) + *(.sbss) + *(.scommon) + inflate_bss_end = .; + . = ALIGN (0x8000); + inflate_slide_window = .; + . += 0x8000; /* slide window is 8000h */ + inflate_free_memory_start = .; + } + + + +} |