diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 2004-10-20 12:49:16 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 2004-10-20 12:49:16 +0000 |
commit | 666be00caca11319514942c23a3c0f48db4bb768 (patch) | |
tree | a693f7523fd17764acc1700263eff8ac40e129b2 /sys/arch/sgi/conf/ld.script | |
parent | 5ca85159004181139801964bee576b87be4abd22 (diff) |
Fix some 64 bit address problems.
Some function names made more unique.
Other changes for the upcoming Origin 200 support.
Diffstat (limited to 'sys/arch/sgi/conf/ld.script')
-rw-r--r-- | sys/arch/sgi/conf/ld.script | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sgi/conf/ld.script b/sys/arch/sgi/conf/ld.script index 7232cc5b178..748b1ba9226 100644 --- a/sys/arch/sgi/conf/ld.script +++ b/sys/arch/sgi/conf/ld.script @@ -6,10 +6,10 @@ ENTRY(__start) SECTIONS { /* Read-only sections, merged into text segment: */ - /* This is so retarded. 0xffffffff8010 does not work!! */ - . = -0x7ff00000 + SIZEOF_HEADERS; + /* This is so retarded. 0xffffffff80100000 does not work!! */ +/* . = -0x7ff00000 + SIZEOF_HEADERS; */ + . = 0xa800000000020000 + SIZEOF_HEADERS; .interp : { *(.interp) } - .MIPS.options : { *(.MIPS.options) } .dynamic : { *(.dynamic) } .hash : { *(.hash) } .dynsym : { *(.dynsym) } |