axvisor 0.8.0

A lightweight type-1 hypervisor based on ArceOS
1
2
3
4
5
6
7
8
9
10
//! Shared Axvisor kernel support.

extern crate alloc;

/// Line-safe guest output, host-log backlog, and fixed console transport.
pub mod console_mux;

/// Filesystem operations backing the Axvisor shell commands.
#[cfg(feature = "fs")]
pub mod shell_fs;