diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2012-11-08 12:14:09 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2012-11-08 12:14:09 +0000 |
commit | 5bd4855dd989c6ff726742b0502a665f20b8a95f (patch) | |
tree | 8e0a9c4694c14474ca959074942ff6d2679bf418 /sys/arch/alpha/stand | |
parent | 6985da982de0d4f075438a8d8e8e99133a26222c (diff) |
now that our make is more strict, fix ws issue; ok espie@
Diffstat (limited to 'sys/arch/alpha/stand')
-rw-r--r-- | sys/arch/alpha/stand/Makefile.inc | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/arch/alpha/stand/Makefile.inc b/sys/arch/alpha/stand/Makefile.inc index a5c9383a844..7e4c35544bf 100644 --- a/sys/arch/alpha/stand/Makefile.inc +++ b/sys/arch/alpha/stand/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.12 2011/06/05 21:49:36 miod Exp $ +# $OpenBSD: Makefile.inc,v 1.13 2012/11/08 12:14:08 otto Exp $ # $NetBSD: Makefile.inc,v 1.8 1997/04/06 08:39:38 cgd Exp $ .include <bsd.own.mk> # for ELF_TOOLCHAIN definition @@ -9,9 +9,12 @@ BINDIR= /usr/mdec # section 3.4.1.2 (pp. III 3-14 - III 3-18) of the second edition of # the Alpha AXP Architecture Reference Manual. -PRIMARY_LOAD_ADDRESS= 20000000 # "Region 1 start" -SECONDARY_LOAD_ADDRESS= 20004000 # "Region 1 start" + 32k -HEAP_LIMIT= 20040000 # "Region 1 start" + 256k +# "Region 1 start" +PRIMARY_LOAD_ADDRESS= 2000000 +# "Region 1 start" + 32k +SECONDARY_LOAD_ADDRESS= 20004000 +# "Region 1 start" + 256k +HEAP_LIMIT= 20040000 CPPFLAGS+= -DPRIMARY_LOAD_ADDRESS="0x${PRIMARY_LOAD_ADDRESS}" CPPFLAGS+= -DSECONDARY_LOAD_ADDRESS="0x${SECONDARY_LOAD_ADDRESS}" |