if search --file /boot/dostools.IMG; then
menuentry " 1.boot DosTools " --class dos {
search -s -f /boot/dostools.img
linux16 ($root)/boot/memdisk
initrd16 ($root)/boot/dostools.IMG
}
fi
if search --file /boot/MAXDOS.IMG; then
menuentry " 2.boot MaxDos " --class dos {
search -s -f /boot/MAXDOS.IMG
linux16 ($root)/boot/memdisk
initrd16 ($root)/boot/MAXDOS.IMG
}
fi
if search --file /boot/MSDOS710.IMG; then
menuentry " 3.boot MS-DOS 7.10 Super Disk " --class dos {
search -s -f /boot/MSDOS710.IMG
linux16 ($root)/boot/memdisk
initrd16 ($root)/boot/MSDOS710.IMG
}
fi
if search --file /boot/KONBOOT.IMG; then
menuentry " 4.KONBOOT( Bypass Windows password )" --class dos {
search -s -f /boot/KONBOOT.IMG
linux16 ($root)/boot/memdisk
initrd16 ($root)/boot/KONBOOT.IMG
}
fi
menuentry ' boot Windows ' --unrestricted {
if [ 'pc' == $grub_platform ] ; then
if search --file --set --no-floppy /bootmgr ; then
chainloader +1
elif search --file --set --no-floppy /ntldr ; then
chainloader +1
else
echo 'No found Windows !'
sleep --verbose 5
fi
fi
if [ 'efi' == $grub_platform ] ; then
if search --file --set --no-floppy /EFI/Microsoft/Boot/bootmgfw.efi ; then
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
else
echo 'No found Windows !'
sleep --verbose 5
fi
fi
}
menuentry ' Go back [Esc]' --class=vtoyret VTOY_RET {
echo 'Return ...'
}