如题,之前是从 openSUSE 13.2 在线升级至 Leap ,然后在线更新了一次 Leap 后就无法从 grub 启动 win10 了,启动 openSUSE 倒是没问题。
grub 报错的信息如图
我的 grub.cfg 对应的部分是这样的
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager (on /dev/sda3)' --class windows --class os $menuentry_id_option 'osprober-efi-DC2F-EC95' {
insmod part_gpt
insmod fat
set root='hd0,gpt3'
if x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 DC2F-EC95
else
search --no-floppy --fs-uuid --set=root DC2F-EC95
fi
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
### END /etc/grub.d/30_os-prober ###