grub.cfg: attempt cryptomount on raid volumes

This commit is contained in:
Leah Rowe
2021-10-31 18:08:13 +00:00
parent de9dabe43d
commit 3364d90edd
+1 -1
View File
@@ -138,7 +138,7 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o
fi fi
set pager=0 set pager=0
echo -n "Attempting to cryptomount: " echo -n "Attempting to cryptomount: "
for dev in ${ahcidev} ${atadev} ${lvmvol}; do # what about raid? for dev in ${ahcidev} ${atadev} ${lvmvol} ${raidvol}; do
echo -n "${dev} " echo -n "${dev} "
if cryptomount "${dev}" ; then break ; fi if cryptomount "${dev}" ; then break ; fi
done done