8391a99bf7
it as a default. For the record, the KDTRACE option caused _no_ additional source files to be compiled in; certainly no CDDL source files. All it did was to allow existing BSD licensed kernel files to include one or more CDDL header files. By removing this from DEFAULTS, the onus is on a kernel builder to add the option to the kernel config, possibly by including GENERIC and customising from there. It means that DTrace won't be a feature available in FreeBSD by default, which is the way I intended it to be. Without this option, you can't load the dtrace module (which contains the dtrace device and the DTrace framework). This is equivalent to requiring an option in a kernel config before you can load the linux emulation module, for example. I think it is a mistake to have DTrace ported to FreeBSD, but not to have it available to everyone, all the time. The only exception to this is the companies which distribute systems with FreeBSD embedded. Those companies will customise their systems anyway. The KDTRACE option was intended for them, and only them.
26 lines
432 B
Plaintext
26 lines
432 B
Plaintext
#
|
|
# DEFAULTS -- Default kernel configuration file for FreeBSD/pc98
|
|
#
|
|
# $FreeBSD$
|
|
|
|
machine pc98 i386
|
|
options PC98
|
|
|
|
# Bus support.
|
|
device isa
|
|
options ISAPNP
|
|
|
|
# Floating point support.
|
|
device npx
|
|
|
|
# Pseudo devices.
|
|
device mem # Memory and kernel memory devices
|
|
device io # I/O device
|
|
|
|
# UART chips on this platform
|
|
device uart_ns8250
|
|
#device uart_i8251
|
|
|
|
# KSE support went from being default to a kernel option
|
|
options KSE
|