blob: 850eb72a03492ee5236c33e83edbbc82430ce951 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
source /tmp/chroot-functions.sh
echo "Installing grub with target x86_64-efi"
grub-install --no-floppy --efi-directory=/boot --removable --skip-fs-probe --no-nvram --no-bootsector --target=x86_64-efi
echo "Creating grub configuration"
grub-mkconfig -o /boot/grub/grub.cfg
|