grub-efi refuses to chainload Windows 8.1

Posted by Alexei Averchenko on Super User See other posts from Super User or by Alexei Averchenko
Published on 2013-11-02T03:36:21Z Indexed on 2013/11/02 3:58 UTC
Read the original article Hit count: 455

Filed under:
|
|

I have installed LMDE (with grub in MBR) after I installed Windows 8.1. I then installed the grub-efi package and added the custom Windows options:

#!/bin/sh
exec tail -n +3 $0

menuentry "Windows" {
    search --fs-uuid --no-floppy --set=root A89A-7F4C
    chainloader (${root})/EFI/Boot/bkpbootx64.efi
}
menuentry "Windows (backup bootloader)" {
    search --fs-uuid --no-floppy --set=root A89A-7F4C
    chainloader (${root})/EFI/Microsoft/Boot/bkpbootmgfw.efi
}

These are basically a leftover from my older Ubuntu setup. However, grub is refusing to load them, complaining about the invalid signature. What do I do now?

© Super User or respective owner

Related posts about windows-8

Related posts about grub