mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
Based off of crosvm revision b5237bbcf074eb30cf368a138c0835081e747d71 add a CMOS device. This environments that can't use KVM clock to get the current time (e.g. Windows and EFI.) Signed-off-by: Rob Bradford <robert.bradford@intel.com>
17 lines
482 B
Rust
17 lines
482 B
Rust
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
// Portions Copyright 2017 The Chromium OS Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE-BSD-3-Clause file.
|
|
|
|
#[cfg(feature = "cmos")]
|
|
mod cmos;
|
|
mod i8042;
|
|
mod serial;
|
|
|
|
#[cfg(feature = "cmos")]
|
|
pub use self::cmos::Cmos;
|
|
pub use self::i8042::I8042Device;
|
|
pub use self::serial::Serial;
|