summaryrefslogtreecommitdiffstats
path: root/40_custom
diff options
context:
space:
mode:
Diffstat (limited to '40_custom')
-rwxr-xr-x40_custom16
1 files changed, 16 insertions, 0 deletions
diff --git a/40_custom b/40_custom
new file mode 100755
index 0000000..406fd11
--- /dev/null
+++ b/40_custom
@@ -0,0 +1,16 @@
+#!/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.
+
+if [ "${grub_platform}" == "pc" ]; then
+ menuentry "Microsoft Windows Vista/7/8/8.1 BIOS-MBR" {
+ insmod part_msdos
+ insmod ntfs
+ insmod search_fs_uuid
+ insmod ntldr
+ search --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 621203AF120386EF
+ ntldr /bootmgr
+ }
+fi