1
2
3
4
5
6
7
8
9
10
11 | menuentry 'Windows 10' --class windows --class os $menuentry_id_option 'osprobe$
insmod part_gpt
insmod fat
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-e$
else
search --no-floppy --fs-uuid --set=root BACEC172CEC12809
fi
chainloader /efi/EFI/Microsoft/Boot/bootmgfw.efi
}
|