1
2
3
4
5
6
7
8
9
10
11
12 | menuentry 'Windows 7 (loader) (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-A4E4CE7AE4CE4DEC' {
insmod part_msdos
insmod ntfs
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 B82A12F22A12AD7E
else
search --no-floppy --fs-uuid --set=root B82A12F22A12AD7E
fi
parttool ${root} hidden-
chainloader +1
}
|