#![allow(missing_docs)]
#[allow(unused_imports)]
use std::path::PathBuf;
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum KernelImage {
Bundled,
File(PathBuf),
}
impl KernelImage {
#[must_use]
pub const fn bundled() -> Self {
Self::Bundled
}
#[must_use]
pub fn from_file(path: impl Into<PathBuf>) -> Self {
Self::File(path.into())
}
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum BootLog {
None,
File(PathBuf),
}