From ffcf536d58631dbccd6ac052c97b9174a13a51b1 Mon Sep 17 00:00:00 2001 From: ihaveahax Date: Thu, 8 Jan 2026 17:50:02 -0600 Subject: [PATCH] gui: search boot9strap folder too for input files (fixes #83) --- custominstall/gui.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/custominstall/gui.py b/custominstall/gui.py index b09a842..4cf77b5 100644 --- a/custominstall/gui.py +++ b/custominstall/gui.py @@ -336,7 +336,9 @@ class CustomInstallGUI(ttk.Frame): self.file_picker_textboxes['sd'] = sd_selected def auto_input_filename(self, f, filename): - sd_msed_path = find_first_file([join(f, 'gm9', 'out', filename), join(f, filename)]) + sd_msed_path = find_first_file( + [join(f, "gm9", "out", filename), join(f, "boot9strap", filename), join(f, filename)] + ) if sd_msed_path: self.log('Found ' + filename + ' on SD card at ' + sd_msed_path) if filename.endswith('bin'):