Topic: Full-disk encryption on GRUB payload in libreboot/coreboot
if the grub cfg files are not present when doing fulldisk encryption at the time of making the grub cfg file, what would be the next step to troubleshoot, also many other .d files seam to be empty is that normal? cheers in advance for any feedback.
with " grub-mkconfig -o /boot/grub/grub.cfg"
my issue is that after I do so I get this issue
"/usr/sbin/grub-mkconfig line 237: /boot/grub/grub.cfg.new"
which from my understandment is referring to the grub.d scripts
and line 237 is the following:
if test "x${grub.cfg}" != "x"; then
rm -f "${grub.cfg}.new"
oldmask=$(umask); umask 077
exec > "${grub_cfg}.new"
umask $oldmask
fi
line 237 -> exec > "${grub_cfg}.new"