diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-01 10:28:09 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-01 18:12:40 +0100 |
commit | e0b2216f6461a88e9aab54e2c2a0a366f20dfd3d (patch) | |
tree | 9ef98c7d87bd4dbfaa3e1f6963323a9312c44d05 /config | |
parent | 38135f9e22d198ba81ceff11a1feef126702b3a9 (diff) |
grub.cfg: don't scan EFI on btrfs subvols
the esp is always a fat32 partition so this makes no sensgrub.cfg: don't scan EFI on btrfs subvols
the esp is always a fat32 partition so this makes no sense
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'config')
-rw-r--r-- | config/grub/config/grub.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/grub/config/grub.cfg b/config/grub/config/grub.cfg index 52ebe9bc..12f460ce 100644 --- a/config/grub/config/grub.cfg +++ b/config/grub/config/grub.cfg @@ -98,7 +98,7 @@ function search_grub { function try_isolinux_config { set root="${1}" - for dir in '' /boot /EFI /boot/EFI /@ /@/boot /@/boot/EFI /@/EFI; do + for dir in '' /boot /EFI /boot/EFI /@ /@/boot; do if [ -f "${dir}"/isolinux/isolinux.cfg ]; then syslinux_configfile -i "${dir}"/isolinux/isolinux.cfg elif [ -f "${dir}"/syslinux/syslinux.cfg ]; then |