From 7b7a3abfaa5562a270fcdb263f4a5f388765255d Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 29 Sep 2021 13:21:07 +0100 Subject: [PATCH] build: Use "common" feature in default features This has the side effect of turning "fwdebug" on but that is advantageous. Signed-off-by: Rob Bradford --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 242eb536f..1b0f77589 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ test_infra = { path = "test_infra" } wait-timeout = "0.2.0" [features] -default = ["acpi", "cmos", "io_uring", "kvm"] +default = ["common", "kvm"] # Common features for all hypervisors common = ["acpi", "cmos", "fwdebug", "io_uring"] acpi = ["vmm/acpi"]