* ld-elf/header.d: Reduce page size, restrict to linux & vxworks

* ld-elf/header.s: Adjust.
	* ld-elf/header.t: Reduce initial offset.
This commit is contained in:
Nathan Sidwell 2007-01-23 16:42:43 +00:00
parent 7b69d46638
commit 723cda2582
4 changed files with 10 additions and 12 deletions

View File

@ -1,3 +1,9 @@
2007-01-23 Nathan Sidwell <nathan@codesourcery.com>
* ld-elf/header.d: Reduce page size, restrict to linux & vxworks
* ld-elf/header.s: Adjust.
* ld-elf/header.t: Reduce initial offset.
2007-01-23 Andreas Schwab <schwab@suse.de>
* lib/ld-lib.exp (run_dump_test): Don't prematurely remove

View File

@ -1,13 +1,5 @@
# target: *-*-linux*
# ld: -T header.t -z max-page-size=0x10000
# target: *-*-linux* *-*-vxworks
# ld: -T header.t -z max-page-size=0x100
# objdump: -hpw
#...
Program Header:
LOAD off 0x0*0000000 vaddr 0x0*0010000 paddr 0x0*0010000 align 2..16
filesz 0x0*00100[23][048] memsz 0x0*00100[23][048] flags rwx
#...
Sections:
Idx Name Size VMA *LMA *File off Algn Flags
0 .text 0*000ffac 0*00100[78][048] 0*00100[78][048] 0*00000[78][048] 2... CONTENTS, ALLOC, LOAD, READONLY, CODE
1 .data 0*0000004 0*002002[04c] 0*002002[04c] 0*001002[04c] 2... CONTENTS, ALLOC, LOAD, DATA

View File

@ -1,7 +1,7 @@
.text
.globl main
main:
.rept 0x4000 - 0x15
.rept 0x40 - 0x15
.long 0xfedcba98
.endr
.data

View File

@ -2,7 +2,7 @@ ENTRY(main)
SECTIONS
{
. = 0x10000 + SIZEOF_HEADERS;
. = 0x100 + SIZEOF_HEADERS;
.text : { *(.text) }
.data : { *(.data) }
}