Skip to content

Commit c21c140

Browse files
authored
Merge pull request #37 from edera-dev/fix/linux-auto-detect-aarch64-images
fix(autoconfigure/linux): detect Image as a kernel, which openSUSE uses
2 parents 2a9c9f6 + c053f62 commit c21c140

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/boot/src/autoconfigure/linux.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const LINUX_CHAINLOAD_ACTION_PREFIX: &str = "linux-chainload-";
2525
const SCAN_LOCATIONS: &[&str] = &["\\boot", "\\"];
2626

2727
/// Prefixes of kernel files to scan for.
28-
const KERNEL_PREFIXES: &[&str] = &["vmlinuz"];
28+
const KERNEL_PREFIXES: &[&str] = &["vmlinuz", "Image"];
2929

3030
/// Prefixes of initramfs files to match to.
3131
const INITRAMFS_PREFIXES: &[&str] = &["initramfs", "initrd", "initrd.img"];

0 commit comments

Comments
 (0)