241835d4e9
CAM_DEBUG_TRACE results in way too much debug output than needed now. When debugging, it's always possible to turn on trace level using camcontrol. Approved by: imp (mentor) Differential Revision: https://reviews.freebsd.org/D12110
37 lines
854 B
Plaintext
37 lines
854 B
Plaintext
# MMCCAM is the kernel config for doing MMC on CAM development
|
|
# and testing on bhyve
|
|
# $FreeBSD$
|
|
|
|
include MINIMAL
|
|
|
|
ident GENERIC-MMCCAM
|
|
|
|
# Access GPT-formatted and labeled root volume
|
|
options GEOM_PART_GPT
|
|
options GEOM_LABEL
|
|
|
|
# UART -- for bhyve console
|
|
device uart
|
|
|
|
# kgdb stub
|
|
device bvmdebug
|
|
|
|
# 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)
|