From f7fedc604d1f75cab64d00fbff7c86669afd2532 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sat, 25 Nov 2023 14:12:39 +0100 Subject: [PATCH] d/rules: VFIO_VIRQFD config is a boolean since e2d55709398e ("vfio: Fold vfio_virqfd.ko into vfio.ko") this config isn't a tristate anymore but a bool, so adapt to that. Luckily the kconfig script did the right thing and set (or at least kept) this to yes anyway Signed-off-by: Thomas Lamprecht --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 463aea2..2718672 100755 --- a/debian/rules +++ b/debian/rules @@ -67,7 +67,7 @@ PMX_CONFIG_OPTS= \ -e CONFIG_MEMCG_SWAP_ENABLED \ -e CONFIG_HYPERV \ -m CONFIG_VFIO_IOMMU_TYPE1 \ --m CONFIG_VFIO_VIRQFD \ +-e CONFIG_VFIO_VIRQFD \ -m CONFIG_VFIO \ -m CONFIG_VFIO_PCI \ -m CONFIG_USB_XHCI_HCD \