while here, flip 'pci' flavor knob to 'no_pci' flavor knob to

enable pci by default
This commit is contained in:
todd 2004-01-22 14:55:15 +00:00
parent 804bb24b26
commit 3925e9cd74
2 changed files with 16 additions and 16 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.34 2004/01/22 14:43:01 todd Exp $
# $OpenBSD: Makefile,v 1.35 2004/01/22 14:55:15 todd Exp $
# $NetBSD: Makefile,v 1.2 1998/09/22 06:11:36 garbled Exp $
COMMENT= "x86 machine simulator"
@ -26,8 +26,8 @@ CONFIGURE_ARGS= --enable-cdrom \
--with-term \
--enable-all-optimizations
FLAVORS= debug i386 i486 i686 x86_64 pci smp smp_4 smp_8 \
no_x11 no_mmx no_comp
FLAVORS= debug i386 i486 i686 x86_64 smp smp_4 smp_8 \
no_x11 no_mmx no_comp no_pci
FLAVOR?=
.if ${FLAVOR:L:Mdebug}
@ -71,7 +71,7 @@ CONFIGURE_ARGS+= --enable-x86-64 --enable-cpu-level="6"
CONFIGURE_ARGS+= --disable-x86-64
.endif
.if ${FLAVOR:L:Mpci}
.if !${FLAVOR:L:Mno_pci}
CONFIGURE_ARGS+= --enable-pci
.endif

View File

@ -4,15 +4,15 @@ related AT hardware, and BIOS to run DOS, Windows 95/98, Minix 2.0 and
other OS's, all on your workstation.
Flavors:
debug - build with Bochs' internal debugging support
i386 - emulate 386 instruction set
i486 - emulate 486 instruction set
i686 - emulate 686 instruction set
x86_64 - emulate x86-64 instruction set
pci - build with support for i440FX PCI chipset
smp - build with support for SMP (2 CPUs)
smp_4 - build with support for SMP (4 CPUs)
smp_8 - build with support for SMP (8 CPUs)
no_x11 - do not build with X support
no_mmx - do not build with mmx support
no_comp- do not build with compressed hard drive support
debug - build with Bochs' internal debugging support
i386 - emulate 386 instruction set
i486 - emulate 486 instruction set
i686 - emulate 686 instruction set
x86_64 - emulate x86-64 instruction set
smp - build with support for SMP (2 CPUs)
smp_4 - build with support for SMP (4 CPUs)
smp_8 - build with support for SMP (8 CPUs)
no_comp - do not build with compressed hard drive support
no_mmx - do not build with mmx support
no_pci - build with support for i440FX PCI chipset
no_x11 - do not build with X support