1# MMCCAM is the kernel config for doing MMC on CAM development 2# and testing on bhyve 3# $FreeBSD$ 4 5#NO_UNIVERSE 6 7include MINIMAL 8 9ident GENERIC-MMCCAM 10 11# Access GPT-formatted and labeled root volume 12options GEOM_LABEL 13 14# UART -- for bhyve console 15device uart 16 17# VirtIO support, needed for bhyve 18device virtio # Generic VirtIO bus (required) 19device virtio_pci # VirtIO PCI device 20device vtnet # VirtIO Ethernet device 21device virtio_blk # VirtIO Block device 22device virtio_scsi # VirtIO SCSI device 23device virtio_balloon # VirtIO Memory Balloon device 24 25# CAM-specific stuff 26device pass 27device scbus 28device da 29 30options MMCCAM 31 32# Add CAMDEBUG stuff 33options CAMDEBUG 34options CAM_DEBUG_FLAGS=(CAM_DEBUG_INFO|CAM_DEBUG_PROBE|CAM_DEBUG_PERIPH) 35