I'm happy to be back here after a gap of nine years - retirement has given me hobby space back!
Previously I have used grub(2) to chainload my operating system in an mbr environment.
I am now trying to do this using grub in a gpt environment with the following menuentry:
Code: Select all
# Lines below commented out as the modules have been pre-included in the main grub efi file
# insmod part_gpt
# insmod part_msdos
# insmod all_video
# insmod ext2
# insmod gzio
# insmod bli
insmod chain
set timeout_style=menu
set timeout=50
# other (working) linux menuentries occur here
menuentry "Lyra Ndlazi OS" {
root=(hd0,gpt3)
chainloader +1
}
Extensive google searching has revealed this as a common problem in loading windows, but suggested solutions seem to centre round Windows's fussiness about what partition it occupies
Can anyone offer me any clues as to what is wrong?
Michael Farthing