#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry 'Windows Recovery Environment (on /dev/sda3)' --class windows --class os $menuentry_id_option 'osprober-chain-1AE141684F091A79' {
insmod part_gpt
insmod ntfs
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 1AE141684F091A79
else
search --no-floppy --fs-uuid --set=root 1AE141684F091A79
fi
drivemap -s (hd0) ${root}
chainloader +1
ntldr /bootmgr
}