diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-10 07:36:33 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-01-10 07:36:33 +0000 |
commit | 1752d29e9c0930cc48fb46cf0907dd4fefd2a309 (patch) | |
tree | fb5e1887d3a77f881cf8cc088ded1fedec07197e /sys/arch/mvme68k/stand/Makefile.inc | |
parent | 1714e6d4bfb567efae90f7337074a300005d155a (diff) |
Really pass -fno-stack-protector in CFLAGS as intended, and define the
load addresses in one single place; from mvme88k
Diffstat (limited to 'sys/arch/mvme68k/stand/Makefile.inc')
-rw-r--r-- | sys/arch/mvme68k/stand/Makefile.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/stand/Makefile.inc b/sys/arch/mvme68k/stand/Makefile.inc index 74e40359210..a05b612bd09 100644 --- a/sys/arch/mvme68k/stand/Makefile.inc +++ b/sys/arch/mvme68k/stand/Makefile.inc @@ -1,4 +1,8 @@ -# $OpenBSD: Makefile.inc,v 1.6 2005/12/30 02:03:49 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.7 2006/01/10 07:36:29 miod Exp $ MDEC_DIR?=/usr/mdec CFLAGS+= -fno-stack-protector + +# Load addresses for first and second stage bootstraps +STAGE1_RELOC=0x10000 +STAGE2_RELOC=0x6F0000 |