mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-28 03:42:09 +00:00
Pull #2795 recently added support for a closer-to-OCI behaviour for VFIO devices, in which they appear to the container as VFIO devices, rather than being interpreted by the guest kernel. However, in order to use this, the Kata guest kernel needs to include the VFIO PCI driver, along with dependencies like the Intel IOMMU driver. The kernel as built by the scripts within Kata don't currently include those, so this patch adds them. fixes #2913 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
6 lines
116 B
Plaintext
6 lines
116 B
Plaintext
# Options we need in order to handle vfio_mode=vfio devices
|
|
|
|
CONFIG_IOMMU_SUPPORT=y
|
|
CONFIG_VFIO=y
|
|
CONFIG_VFIO_PCI=y
|