added the readme

This commit is contained in:
2026-07-30 13:08:39 -04:00
parent 4c2236bf5d
commit 44b60e3634
783 changed files with 28992 additions and 582 deletions
+2 -2
View File
@@ -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());