diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-07-05 21:17:29 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-07-05 21:17:29 +0000 |
commit | 42951335bffb98506ad95ff8bb569a1826b60b02 (patch) | |
tree | fe702c27ccedbdc2365ed6f5d12b1f0d5d075675 /sys/arch/sparc64/stand | |
parent | d1a1851b41011decd7eea4efb14215c261db4926 (diff) |
Link bootloader at 1MB (same a the Solaris bootloader) instead of 8MB (which
the firmware on the v1280 doesn't like).
tested by many
Diffstat (limited to 'sys/arch/sparc64/stand')
-rw-r--r-- | sys/arch/sparc64/stand/ofwboot/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/arch/sparc64/stand/ofwboot/Makefile b/sys/arch/sparc64/stand/ofwboot/Makefile index fb4d016635c..c2484f2bc0e 100644 --- a/sys/arch/sparc64/stand/ofwboot/Makefile +++ b/sys/arch/sparc64/stand/ofwboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2007/11/26 10:26:03 deraadt Exp $ +# $OpenBSD: Makefile,v 1.13 2008/07/05 21:17:28 kettenis Exp $ # $NetBSD: Makefile,v 1.2 2001/03/04 14:50:05 mrg Exp $ CURDIR= ${.CURDIR} @@ -33,10 +33,7 @@ NEWVERSWHAT= "OpenFirmware Boot" # # ELF64 defaults to 1MB # -# We may get address conflicts with other bootloaders, say -# Sun's ufsboot, so we'll pick a reasonably empty address. -# -RELOC= 800000 +RELOC= 100000 ENTRY= _start |