added the readme
This commit is contained in:
+2
-2
@@ -35,7 +35,7 @@ fn main() {
|
||||
println!("Creating UEFI boot image from {}", kernel_path.display());
|
||||
let mut uefi_img = bootloader::UefiBoot::new(&kernel_path);
|
||||
uefi_img.set_boot_config(&boot_config);
|
||||
let uefi_path = Path::new(&out_dir).join("wordleos-uefi.img");
|
||||
let uefi_path = Path::new(&out_dir).join("engfinal-uefi.img");
|
||||
uefi_img.create_disk_image(&uefi_path)
|
||||
.expect("failed to write UEFI image");
|
||||
println!("UEFI image written to: {}", uefi_path.display());
|
||||
@@ -44,7 +44,7 @@ fn main() {
|
||||
println!("Creating BIOS boot image from {}", kernel_path.display());
|
||||
let mut bios_img = bootloader::BiosBoot::new(&kernel_path);
|
||||
bios_img.set_boot_config(&boot_config);
|
||||
let bios_path = Path::new(&out_dir).join("wordleos-bios.img");
|
||||
let bios_path = Path::new(&out_dir).join("engfinal-bios.img");
|
||||
bios_img.create_disk_image(&bios_path)
|
||||
.expect("failed to write BIOS image");
|
||||
println!("BIOS image written to: {}", bios_path.display());
|
||||
|
||||
Reference in New Issue
Block a user