From 474ff084314b32b5397753d15c852ba251b91f26 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Wed, 11 Mar 2026 20:53:46 +0100 Subject: [PATCH] Fix bootloader location --- src/bin/installer_tui.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/installer_tui.rs b/src/bin/installer_tui.rs index b1c91a62df..2739983c41 100644 --- a/src/bin/installer_tui.rs +++ b/src/bin/installer_tui.rs @@ -275,7 +275,7 @@ fn main() { let instant = std::time::Instant::now(); let bootloader_bios = { - let path = root_path.join("boot").join("bootloader.bios"); + let path = root_path.join("usr/lib/boot/bootloader.bios"); if path.exists() { match fs::read(&path) { Ok(ok) => ok, @@ -294,7 +294,7 @@ fn main() { }; let bootloader_efi = { - let path = root_path.join("boot").join("bootloader.efi"); + let path = root_path.join("usr/lib/boot/bootloader.efi"); if path.exists() { match fs::read(&path) { Ok(ok) => ok,