diff options
author | obrien <obrien@FreeBSD.org> | 2001-04-15 19:37:28 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-04-15 19:37:28 +0000 |
commit | c7790304defd50842d2d5c8eb946fef9393baec4 (patch) | |
tree | 9d7e00ac800f37f145796348e7b61c7f99d498fc /sys/pc98/conf | |
parent | 406ae6ca2cb3f18c21e5b9dc566de193754d3cbf (diff) | |
download | FreeBSD-src-c7790304defd50842d2d5c8eb946fef9393baec4.zip FreeBSD-src-c7790304defd50842d2d5c8eb946fef9393baec4.tar.gz |
Turn on kernel debugging support (DDB, INVARIANTS, INVARIANT_SUPPORT, WITNESS)
by default while SMPng is still being developed.
Submitted by: jhb
Diffstat (limited to 'sys/pc98/conf')
-rw-r--r-- | sys/pc98/conf/GENERIC | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/pc98/conf/GENERIC b/sys/pc98/conf/GENERIC index 0df4da5..dd26cac 100644 --- a/sys/pc98/conf/GENERIC +++ b/sys/pc98/conf/GENERIC @@ -28,7 +28,7 @@ maxusers 32 #To statically compile in device wiring instead of /boot/device.hints #hints "GENERIC.hints" #Default places to look for devices. -#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols +makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols options PC98 #PC98 options MATH_EMULATE #Support for x87 emulation @@ -60,6 +60,12 @@ options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options KBD_INSTALL_CDEV # install a CDEV entry in /dev +# Debugging for use in -current +options DDB +options INVARIANTS +options INVARIANT_SUPPORT +options WITNESS + # To make an SMP kernel, the next two are needed #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O |