diff --git a/hypervisor/src/arch/mod.rs b/hypervisor/src/arch/mod.rs index e68225da5..d0ffd948d 100644 --- a/hypervisor/src/arch/mod.rs +++ b/hypervisor/src/arch/mod.rs @@ -21,3 +21,6 @@ pub mod x86; #[cfg(target_arch = "aarch64")] pub mod aarch64; + +#[cfg(target_arch = "riscv64")] +pub mod riscv64; diff --git a/hypervisor/src/arch/riscv64/mod.rs b/hypervisor/src/arch/riscv64/mod.rs new file mode 100644 index 000000000..1bad76ced --- /dev/null +++ b/hypervisor/src/arch/riscv64/mod.rs @@ -0,0 +1,5 @@ +// Copyright © 2024 Institute of Software, CAS. All rights reserved. +// +// SPDX-License-Identifier: Apache-2.0 + +pub mod aia;