resources: grub: config: unify dev and devices variables.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
This commit is contained in:
Denis 'GNUtoo' Carikli 2024-12-13 14:58:51 +01:00 committed by Adrien 'neox' Bourmault
parent ce01a8a7cf
commit ddb517e3de
Signed by: neox
GPG Key ID: 57BC26A3687116F6
1 changed files with 2 additions and 2 deletions

View File

@ -136,8 +136,8 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o
set pager=0
echo -n "Attempting to unlock encrypted volumes"
for dev in ${ahcidev} ${atadev} ${raidvol}; do
if cryptomount "${dev}" ; then break ; fi
for device in ${ahcidev} ${atadev} ${raidvol}; do
if cryptomount "${device}" ; then break ; fi
done
for device in (*) ; do