axbuild 0.4.5

An OS build lib toolkit used by arceos
Documentation
//! Shared rootfs helpers used across ArceOS, StarryOS, and AxVisor host-side
//! build flows.
//!
//! Main responsibilities:
//! - Manage naming, path resolution, download, caching, and extraction for
//!   workspace-managed rootfs images in [`store`]
//! - Extract rootfs contents and inject overlay trees back into images in
//!   [`inject`]
//! - Patch QEMU arguments so a selected rootfs image is attached correctly in
//!   [`qemu`]

/// Rootfs image content extraction and overlay injection helpers.
pub(crate) mod inject;
/// QEMU argument patch helpers for wiring a rootfs image into runner configs.
pub(crate) mod qemu;
/// Runtime dependency synchronization helpers for rootfs overlay trees.
pub(crate) mod runtime;
/// Managed rootfs image lookup, naming, caching, download, and extraction.
pub(crate) mod store;