Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/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 "Microsoft Windows 7" {
- insmod part_gpt
- insmod fat
- insmod search_fs_uuid
- insmod chain
- # Determinate your root:
- # echo `sudo grub-probe --target=hints_string /boot/efi/EFI/Microsoft/Boot/bkpbootmgfw.efi` `sudo grub-probe --target=fs_uuid /boot/efi/EFI/Microsoft/Boot/bkpbootmgfw.efi`
- search --fs-uuid --no-floppy --set=root YOUR_ROOT_HERE
- chainloader /EFI/Microsoft/Boot/bkpbootmgfw.efi
- }
- menuentry "Riavvia" {
- reboot
- }
- menuentry "Spegni" {
- halt
- }
Advertisement
Add Comment
Please, Sign In to add comment