blob: 8ed95641af6fdef4cfaca25c54ac0b4f4ca906ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#
# DEFAULTS -- Default kernel configuration file for FreeBSD/i386
#
# $FreeBSD$
machine i386
options EARLY_AP_STARTUP
# Bus support.
device isa
options ISAPNP
# Pseudo devices.
device mem # Memory and kernel memory devices
device io # I/O device
# UART chips on this platform
device uart_ns8250
# Default partitioning schemes
options GEOM_PART_BSD
options GEOM_PART_EBR
options GEOM_PART_MBR
options GEOM_PART_GPT
# Default congestion control algorithm
options CC_CUBIC # include CUBIC congestion control
# enable support for native hardware
device atpic
options NEW_PCIB
options NETLINK # netlink(4) support
|