We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b509fca commit 9e17128Copy full SHA for 9e17128
41_snapshots-btrfs
@@ -488,12 +488,8 @@ detect_microcode()
488
list_ucode=()
489
# Original intel/amd microcode (auto-detect)
490
# See "https://www.gnu.org/software/grub/manual/grub/html_node/Simple-configuration.html"
491
- for oiucode in "${boot_dir}"/intel-uc.img \
492
- "${boot_dir}"/intel-ucode.img \
493
- "${boot_dir}"/amd-uc.img \
494
- "${boot_dir}"/amd-ucode.img \
495
- "${boot_dir}"/early_ucode.cpio \
496
- "${boot_dir}"/microcode.cpio; do
+ for oiucode in ${GRUB_EARLY_INITRD_LINUX_STOCK} ; do
+ oiucode="${boot_dir}/${oiucode}"
497
[ ! -f "${oiucode}" ] && continue;
498
list_ucode+=("$oiucode")
499
done
0 commit comments