This problem is due to change in behaviour of grub-mkimage command. If you used grub-install to create grub.efi, then you may not have noticed it.
The mkimage command was changed in bzr revision 2372 (http://bazaar.launchpad.net/~vcs-imports/grub/grub2-bzr/revision/2372), Now you nedd the output image type as well as a "--prefix=" option to mkimage utility for grub.efi to load you grub.cfg file. Unfortunately this leads to grub.efi not being portable. The grub-mkimage command should be used as follows ./grub-mkimage -d . -o <EFI SYSTEM PARTITION>/EFI/<YOUR_GRUB2_FOLDER>/grub.efi -O TARGET_EFI_ARCH-efi -p /efi/<YOUR_GRUB2_FOLDER> <GRUB2 Modules Notice the " -p /efi/<YOUR_GRUB2_FOLDER>" parameter in the command. This will solve ur problem. If you have any more problems use this script to compile and install grub2 UEFI http://gist.github.com/410877 . _______________________________________________ Help-grub mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-grub
