|
2#
楼主 |
发表于 2020-2-5 22:07:58
|
只看该作者
本帖最后由 abc22048 于 2020-2-5 22:15 编辑
这个是不是为三种启动项
menuentry '正常启动(Windows)' --unrestricted {
if [ 'pc' == $grub_platform ] ; then
if search --file --set /bootmgr ; then
chainloader +1
elif search --file --set /ntldr ; then
chainloader +1
fi
elif [ 'efi' == $grub_platform ] ; then
if search --file --set /EFI/Microsoft/Boot/bootmgfw.efi ; then
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
fi
fi
}
搜索bootmgr
搜索ntldr
在/EFI/Microsoft/Boot/搜索中bootmgfw.efi
|
|