xtask/tasks/guest_test/uefi/
mod.rsuse crate::Xtask;
use clap::Parser;
use std::path::Path;
use std::path::PathBuf;
use xshell::cmd;
mod gpt_efi_disk;
#[derive(Parser)]
pub struct Uefi {
#[clap(long)]
output: Option<PathBuf>,
#[clap(long)]
#[expect(clippy::option_option)]
bootx64: Option<Option<PathBuf>>,
#[clap(long)]
#[expect(clippy::option_option)]
bootaa64: Option<Option<PathBuf>>,
}
impl Xtask for Uefi {
fn run(self, _ctx: crate::XtaskCtx) -> anyhow::Result<()> {
let mut files = Vec::new();
let bootx64 = if self.bootx64.is_none() && self.bootaa64.is_none() {
Some(None)
} else {
self.bootx64
};
if let Some(bootx64) = bootx64.as_ref() {
if let Some(bootx64) = bootx64 {
files.push((Path::new("efi/boot/bootx64.efi"), bootx64.as_path()));
} else {
let sh = xshell::Shell::new()?;
cmd!(
sh,
"cargo build -p guest_test_uefi --target x86_64-unknown-uefi"
)
.run()?;
files.push((
Path::new("efi/boot/bootx64.efi"),
Path::new("./target/x86_64-unknown-uefi/debug/guest_test_uefi.efi"),
));
}
}
if let Some(bootaa64) = self.bootaa64.as_ref() {
if let Some(bootaa64) = bootaa64 {
files.push((Path::new("efi/boot/bootaa64.efi"), bootaa64.as_path()))
} else {
let sh = xshell::Shell::new()?;
cmd!(
sh,
"cargo build -p guest_test_uefi --target aarch64-unknown-uefi"
)
.run()?;
files.push((
Path::new("efi/boot/bootaa64.efi"),
Path::new("./target/aarch64-unknown-uefi/debug/guest_test_uefi.efi"),
));
}
}
let out_img = match self.output {
Some(path) => path,
None => {
if files.len() != 1 {
anyhow::bail!(
"Multiple EFI files specified. Please provide an explicit output path."
)
}
files[0].1.with_extension("img")
}
};
gpt_efi_disk::create_gpt_efi_disk(&out_img, &files)?;
Ok(())
}
}