We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
\EFI\hermit
1 parent 676708b commit 62efc9bCopy full SHA for 62efc9b
1 file changed
xtask/src/ci/qemu.rs
@@ -89,9 +89,11 @@ impl Qemu {
89
// EDK II: https://github.com/tianocore/edk2/blob/edk2-stable202511/MdePkg/Include/Uefi/UefiSpec.h#L2264-L2273
90
sh.create_dir("target/esp/EFI/BOOT")?;
91
sh.copy_file(self.build.dist_object(), "target/esp/EFI/BOOT/BOOTX64.EFI")?;
92
+
93
+ sh.create_dir("target/esp/EFI/hermit")?;
94
sh.copy_file(
95
self.build.ci_image(self.image.as_deref().unwrap()),
- "target/esp/EFI/BOOT/hermit-app",
96
+ "target/esp/EFI/hermit/hermit-app",
97
)?;
98
}
99
Target::Aarch64Elf | Target::Aarch64BeElf if self.u_boot => {
0 commit comments