diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-06-21 14:02:29 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-06-21 14:02:29 +0000 |
commit | a8de4fb9f24fea095e80a3fcd5c69bd6029e39d2 (patch) | |
tree | a16d02a1e5f3bbadde4f85f030dce15958e4ba6e /target/image/ar7/src/ld.script.in | |
parent | b0107120a73002d99673d1ce0ea22dc9c646472e (diff) |
move target/linux/image to target/image
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4040 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/image/ar7/src/ld.script.in')
-rw-r--r-- | target/image/ar7/src/ld.script.in | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/target/image/ar7/src/ld.script.in b/target/image/ar7/src/ld.script.in new file mode 100644 index 000000000..40389e644 --- /dev/null +++ b/target/image/ar7/src/ld.script.in @@ -0,0 +1,34 @@ + OUTPUT_FORMAT("@@OUTPUT_FORMAT@@") + OUTPUT_ARCH(mips) +ENTRY(tikernelunzip) + SECTIONS +{ + + /* Allocate memory space on top of kernel bss space */ + . = 0x94200000; + .text : + { + *(.text) + *(.rodata) + *(.rodata1) + *(.gnu.warning) + *(.text.init) + *(.data.init) + } + + .data : + { + *(*) + } + + .bss : + { + *(.dynbss) + *(COMMON) + *(.bss) + *(.sbss) + *(.scommon) + . = ALIGN (0x8000); + workspace = .; + } +} |