From 552b69367ff45975948a3578b365245829a41ca6 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Fri, 3 Oct 2025 12:05:37 -0400 Subject: [PATCH] xtask: remove outdated snippet We handed this to QEMU in e3bfeb9dd65bd75bb50d111160ebe5e092f514f4. --- xtask/src/run.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/xtask/src/run.rs b/xtask/src/run.rs index 30ea44a1..f46502db 100644 --- a/xtask/src/run.rs +++ b/xtask/src/run.rs @@ -219,18 +219,18 @@ pub(crate) fn run(opts: Options) -> Result<()> { // We need tools to build the initramfs; we use gen_init_cpio from the Linux repository, // taking care to cache it. // - // Then we iterate the kernel images, using the `file` program to guess the target + // We iterate the kernel images, using the `file` program to guess the target // architecture. We then build the init program and our test binaries for that // architecture, and use gen_init_cpio to build an initramfs containing the test - // binaries. We're almost ready to run the VM. + // binaries. We're ready to run the VM. // - // We consult our OS, our architecture, and the target architecture to determine if - // hardware acceleration is available, and then start QEMU with the provided kernel - // image and the initramfs we built. + // We start QEMU with the provided kernel image and the initramfs we built. // // We consume the output of QEMU, looking for the output of our init program. This is // the only way to distinguish success from failure. We batch up the errors across all - // VM images and report to the user. The end. + // VM images and report to the user. + // + // The end. create_dir_all(&cache_dir).context("failed to create cache dir")?;