supermachine 0.3.3

Run any OCI/Docker image as a hardware-isolated microVM on macOS HVF (Linux KVM and Windows WHP in progress). Single library API, zero flags for the common case, sub-100 ms cold-restore from snapshot.
1
2
3
4
5
6
7
8
9
// Kernel-loading responsibilities:
//   - Load a Linux kernel Image into guest RAM at the boot offset
//   - Compute the initial PC for the boot vCPU
//   - Stage initrd into RAM if provided
//
// On aarch64 the Image format is just raw bytes at offset 0x80000;
// no ELF parsing needed.

pub mod loader;