From 2b53de58b345f7962c7bb3818c7d9407d34e52cb Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Tue, 20 Sep 2022 10:30:57 +0100 Subject: [PATCH] build: Remove the exposed "cmos" feature This only affects the build system; the feature was already always compiled in with ca68b9e7a90c9e25e8d9399dea059c9b63cd0419 Signed-off-by: Rob Bradford --- Cargo.toml | 1 - devices/Cargo.toml | 1 - vmm/Cargo.toml | 1 - 3 files changed, 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2abaf47e3..f6fba1531 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,6 @@ wait-timeout = "0.2.0" default = ["common", "kvm"] # Common features for all hypervisors common = ["fwdebug"] -cmos = ["vmm/cmos"] fwdebug = ["vmm/fwdebug"] gdb = ["vmm/gdb"] guest_debug = ["vmm/guest_debug"] diff --git a/devices/Cargo.toml b/devices/Cargo.toml index 6ebd23257..d3529a200 100644 --- a/devices/Cargo.toml +++ b/devices/Cargo.toml @@ -25,5 +25,4 @@ arch = { path = "../arch" } [features] default = [] -cmos = [] fwdebug = [] diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index bb9d091be..054b5f2b8 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -6,7 +6,6 @@ edition = "2021" [features] default = [] -cmos = ["devices/cmos"] fwdebug = ["devices/fwdebug"] gdb = ["kvm", "gdbstub", "gdbstub_arch"] guest_debug = ["kvm"]