This commit is contained in:
teldra 2022-02-09 18:24:38 +01:00
parent 73aa359ea8
commit c1f04f8bad
1 changed files with 14 additions and 0 deletions

View File

@ -40,6 +40,20 @@ config() {
echo "set root=(memdisk)" > /boot/grub/early-grub.cfg
echo "set prefix=($root)/" >> /boot/grub/early-grub.cfg
echo "insmod part_gpt" >> /boot/grub/early-grub.cfg
echo "insmod cryptodisk" >> /boot/grub/early-grub.cfg
echo "insmod luks" >> /boot/grub/early-grub.cfg
echo "insmod gcry_rijndael" >> /boot/grub/early-grub.cfg
echo "insmod gcry_rijndael" >> /boot/grub/early-grub.cfg
echo "insmod gcry_sha256" >> /boot/grub/early-grub.cfg
echo "insmod lvm" >> /boot/grub/early-grub.cfg
echo "insmod btrfs" >> /boot/grub/early-grub.cfg
echo "insmod memdisk" >> /boot/grub/early-grub.cfg
echo "insmod tar" >> /boot/grub/early-grub.cfg
echo "insmod at_keyboard" >> /boot/grub/early-grub.cfg
echo "insmod keylayouts" >> /boot/grub/early-grub.cfg
echo "insmod configfile" >> /boot/grub/early-grub.cfg
echo "insmod all_video" >> /boot/grub/early-grub.cfg
echo "terminal_input at_keyboard" >> /boot/grub/early-grub.cfg
echo "keymap /boot/grub/${KEY_LANG}.gkb" >> /boot/grub/early-grub.cfg
echo "cryptomount -u ${CRYPTUUID}" >> /boot/grub/early-grub.cfg