make the default flavor i586 (i486 doesn't boot alot correctly)

This commit is contained in:
todd 2001-03-01 22:43:49 +00:00
parent 5702d77f4a
commit 97ed4428be

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.16 2001/02/02 16:59:06 todd Exp $
# $OpenBSD: Makefile,v 1.17 2001/03/01 22:43:49 todd Exp $
# $NetBSD: Makefile,v 1.2 1998/09/22 06:11:36 garbled Exp $
DISTNAME= bochs-2000_0325a
@ -19,8 +19,8 @@ CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --enable-vga \
--enable-fpu --enable-cdrom
FLAVORS= debug i386 i586 pci smp net no_x11 term
FLAVOR?=
FLAVORS= debug i386 i486 i586 pci smp net no_x11 term
FLAVOR?= i586
.if ${FLAVOR:L:Mdebug}
CONFIGURE_ARGS+= --enable-debugger --enable-disasm --enable-x86-debugger
@ -39,10 +39,10 @@ CONFIGURE_ARGS+= --with-x11
.if ${FLAVOR:L:Mi386}
CONFIGURE_ARGS+= --enable-cpu-level="3"
.else
. if ${FLAVOR:L:Mi586}
CONFIGURE_ARGS+= --enable-cpu-level="5"
. else
. if ${FLAVOR:L:Mi486}
CONFIGURE_ARGS+= --enable-cpu-level="4"
. else
CONFIGURE_ARGS+= --enable-cpu-level="5"
. endif
.endif