From c053f62b88368fd65d9bffef783aa6030fd32c9c Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sat, 15 Nov 2025 13:41:07 -0800 Subject: [PATCH] fix(autoconfigure/linux): detect Image as a kernel, which openSUSE uses --- crates/boot/src/autoconfigure/linux.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/boot/src/autoconfigure/linux.rs b/crates/boot/src/autoconfigure/linux.rs index 7146cf9..e7f3bc9 100644 --- a/crates/boot/src/autoconfigure/linux.rs +++ b/crates/boot/src/autoconfigure/linux.rs @@ -25,7 +25,7 @@ const LINUX_CHAINLOAD_ACTION_PREFIX: &str = "linux-chainload-"; const SCAN_LOCATIONS: &[&str] = &["\\boot", "\\"]; /// Prefixes of kernel files to scan for. -const KERNEL_PREFIXES: &[&str] = &["vmlinuz"]; +const KERNEL_PREFIXES: &[&str] = &["vmlinuz", "Image"]; /// Prefixes of initramfs files to match to. const INITRAMFS_PREFIXES: &[&str] = &["initramfs", "initrd", "initrd.img"];