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