Skip to content

Commit ea64759

Browse files
committed
The disk image extension was changed from bin to img
1 parent c7828d3 commit ea64759

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/runner/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ pub fn create_disk_image(kernel_binary_path: &Path, bios_only: bool) -> PathBuf
6666
let disk_image = kernel_binary_path
6767
.parent()
6868
.unwrap()
69-
.join(format!("bootimage-bios-{}.bin", kernel_binary_name));
69+
.join(format!("bootimage-bios-{}.img", kernel_binary_name));
7070
if !disk_image.exists() {
7171
panic!(
7272
"Disk image does not exist at {} after bootloader build",

0 commit comments

Comments
 (0)