diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-01 16:52:32 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-01 18:12:40 +0100 |
commit | 2ea5e61cfd834ed92cfe35a917d12808afa39253 (patch) | |
tree | 8e4b2aa960e4803ab90e7ac4a679434e0e576e48 /config | |
parent | c742a89dadae7eece86b49132cf8d9929fd5a587 (diff) |
grub.cfg: don't search for *_grub.cfg
this is a relic from the old days when we didn't
automated the grub.cfg logic as much. these days,
the grub.cfg logic is able to boot almost all distros
without any manual intervention or override.
removing these entries will speed up the boot in general
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'config')
-rw-r--r-- | config/grub/config/grub.cfg | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/config/grub/config/grub.cfg b/config/grub/config/grub.cfg index 5a6abd44..29313cf5 100644 --- a/config/grub/config/grub.cfg +++ b/config/grub/config/grub.cfg @@ -66,12 +66,10 @@ function try_user_config { # The @/... entries are for cases where the BTRFS filesystem is being used for dir in boot grub grub2 boot/grub boot/grub2 @/boot @/grub @/grub2 @/boot/grub @/boot/grub2; do - for name in '' osboot_ autoboot_ libreboot_ coreboot_; do - if [ -f /"${dir}"/"${name}"grub.cfg ]; then - unset superusers - configfile /"${dir}"/"${name}"grub.cfg - fi - done + if [ -f /"${dir}"/grub.cfg ]; then + unset superusers + configfile /"${dir}"/grub.cfg + fi done } function search_grub { |