diff options
author | Leah Rowe <leah@libreboot.org> | 2023-12-18 08:31:38 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-12-18 08:31:38 +0000 |
commit | 430918ee78ab9dc5c7d87327d04def1f303e08bc (patch) | |
tree | 3d5e4d9275530249a8d65032a302c5c499bf7d1e /config | |
parent | d74c6c711473adecea1156dc6556b8d8e53fcc78 (diff) |
grub.cfg: handle btrfs subvols for extlinux.conf
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 b0c72afb..fded583f 100644 --- a/config/grub/config/grub.cfg +++ b/config/grub/config/grub.cfg @@ -71,7 +71,7 @@ function search_grub { function try_isolinux_config { set root="${1}" - for dir in '' /boot /EFI; do + for dir in '' /boot /EFI /@ /@/boot /@/EFI; do if [ -f "${dir}"/isolinux/isolinux.cfg ]; then syslinux_configfile -i "${dir}"/isolinux/isolinux.cfg elif [ -f "${dir}"/syslinux/syslinux.cfg ]; then |