diff --git a/Cargo.toml b/Cargo.toml index e1b780dad..afb59ff76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,6 +40,7 @@ acpi = ["vmm/acpi"] pci = ["vmm/pci_support"] mmio = ["vmm/mmio_support"] cmos = ["vmm/cmos"] +pvh_boot = ["vmm/pvh_boot"] # Integration tests require a special environment to run in integration_tests = [] diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 91580497f..7113560c0 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -10,6 +10,7 @@ acpi = ["acpi_tables","devices/acpi"] pci_support = ["pci", "vfio", "vm-virtio/pci_support"] mmio_support = ["vm-virtio/mmio_support"] cmos = ["devices/cmos"] +pvh_boot = [] [dependencies] arc-swap = ">=0.4.4"