opnsense-src/sys/amd64/conf/GENERIC-MMCCAM
Mike Karels dd6f6030cc amd64 kernel config: clean up whitespace
Most options in kernel config files use "options<space><tab>OPTION".
This allows the option to be commented out without shifting columns.
A few options had two tabs, and some had spaces.  Make them consistent.
2023-02-24 08:36:28 -06:00

34 lines
775 B
Text

# MMCCAM is the kernel config for doing MMC on CAM development
# and testing on bhyve
# $FreeBSD$
#NO_UNIVERSE
include MINIMAL
ident GENERIC-MMCCAM
# Access GPT-formatted and labeled root volume
options GEOM_LABEL
# UART -- for bhyve console
device uart
# VirtIO support, needed for bhyve
device virtio # Generic VirtIO bus (required)
device virtio_pci # VirtIO PCI device
device vtnet # VirtIO Ethernet device
device virtio_blk # VirtIO Block device
device virtio_scsi # VirtIO SCSI device
device virtio_balloon # VirtIO Memory Balloon device
# CAM-specific stuff
device pass
device scbus
device da
options MMCCAM
# Add CAMDEBUG stuff
options CAMDEBUG
options CAM_DEBUG_FLAGS=(CAM_DEBUG_INFO|CAM_DEBUG_PROBE|CAM_DEBUG_PERIPH)