diff options
author | Mike Gilbert <floppym@gentoo.org> | 2024-01-28 11:23:22 -0500 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2024-02-05 19:01:37 -0500 |
commit | 65b494db54e9228fbb4dd0c647f9dd11998c3f4c (patch) | |
tree | 636f6a2d0301369fb9bdb15dd5f3688d4003d839 /2024-02-01-grub-upgrades/2024-02-01-grub-upgrades.en.txt | |
parent | 2024-01-18-installkernel-merge: add new USE=systemd-boot (diff) | |
download | gentoo-news-65b494db54e9228fbb4dd0c647f9dd11998c3f4c.tar.gz gentoo-news-65b494db54e9228fbb4dd0c647f9dd11998c3f4c.tar.bz2 gentoo-news-65b494db54e9228fbb4dd0c647f9dd11998c3f4c.zip |
2024-02-01-grub-upgrades: add news item
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to '2024-02-01-grub-upgrades/2024-02-01-grub-upgrades.en.txt')
-rw-r--r-- | 2024-02-01-grub-upgrades/2024-02-01-grub-upgrades.en.txt | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/2024-02-01-grub-upgrades/2024-02-01-grub-upgrades.en.txt b/2024-02-01-grub-upgrades/2024-02-01-grub-upgrades.en.txt new file mode 100644 index 0000000..f7aaa72 --- /dev/null +++ b/2024-02-01-grub-upgrades/2024-02-01-grub-upgrades.en.txt @@ -0,0 +1,40 @@ +Title: GRUB upgrades +Author: Mike Gilbert <floppym@gentoo.org> +Posted: 2024-02-01 +Revision: 1 +News-Item-Format: 2.0 +Display-If-Installed: sys-boot/grub + +When booting with GRUB, it is important that the core image and modules +have matching versions. Usually, running grub-install is sufficient to +ensure this. + +On the UEFI platform, grub-install allows the core image to be placed in +two different locations: + +EFI/gentoo/grubx64.efi +This is the location used by grub-install without options. + +EFI/BOOT/BOOTX64.EFI +This is the location used by grub-install --removable. + +On upgrades, it is common for users to mismatch the grub-install options +they used for the current and previous versions of grub. This will cause +a stale core image to exist. For example: + +/boot/efi/EFI/BOOT/BOOTX64.EFI (grub 2.06 core image) +/boot/efi/EFI/gentoo/grubx64.efi (grub 2.12 core image) +/boot/grub/x86_64-pc/*.mod (grub 2.12 modules) + +Booting this system using BOOTX64.EFI image would likely fail due to a +symbol mismatch between the core image and modules. [1] + +Re-runing grub-install both with and without the --removable option +should ensure a working GRUB installation. + +However, this will clobber any BOOTX64.EFI image provded by other +loaders. If dual-booting using another boot loader, users must take care +not to replace BOOTX64.EFI if it is not provided by GRUB. + +References: +[1] https://bugs.gentoo.org/920708 |