vm-linux 2.0.0

KVM backend for Hanzo VM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Placeholder — the guest gets entropy from the kernel's virtio-rng
/// if present in the FDT. Kept for API compatibility with vm-darwin.
pub struct VirtioEntropyDevice;

impl VirtioEntropyDevice {
    pub fn new() -> Self {
        VirtioEntropyDevice
    }
}

impl Default for VirtioEntropyDevice {
    fn default() -> Self {
        Self::new()
    }
}