From c1f04f8badc26e3241e89bde84ef5bbb810daee8 Mon Sep 17 00:00:00 2001 From: teldra Date: Wed, 9 Feb 2022 18:24:38 +0100 Subject: [PATCH] progress --- etc/bootloader/grub | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/etc/bootloader/grub b/etc/bootloader/grub index f76262d..8dfae73 100644 --- a/etc/bootloader/grub +++ b/etc/bootloader/grub @@ -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