Fix Clovy Clovy
On some cases, especially laptops, they are hard coded to start \EFI\Microsoft\Boot\bootmgfw.efi
instead of \EFI\BOOT\BOOTX64.EFI
, and this to lock the computer (somewhat) to M$'s botnet OS. To fix that you can:
Mount EFI partition, rename
bootmgfw.efi
inEFI > Microsoft > Boot
to anything else thanbootmgfw.efi
(like bootmgfww.efi or something). Remember that naming. Now, the computer will not findbootmgfw.efi
and look forbootx64.efi
or whatever is the next boot option.Rename
CLOVERX64.EFI
tobootmgfw.efi
then rename M$'sbootmgfw.efi
to anything else, then copy the fakebootmgfw.efi
toEFI > Microsoft > Boot
. On some laptops it is needed to force load anything namedbootmgfw.efi
to boot anything.On SOME UEFI systems, like AMI Aptio, you can add and change boot options from the firmware setup (aka, BIOS setup) and change boot file priority, use this instead of renaming if you have this option. If you can do this, no need to configure clover any further.
Manually Add Clover Entry:
Enter EFI Shell.
As shell loads, note the label of the HDD/SSD your EFI and macOS/OSX are installed on, or type
map
to see itThen
bcfg boot dump
it will output your actual boot entries.VERY CAREFULLY add a new entry after the highest one in the list. I had to type
bcfg boot add XX FSX:\EFI\CLOVER\CLOVERX64.EFI "CloverBoot"
, whereFSX
is your macOS/OSX EFI,XX
is the new entry and"CloverBoot"
is the name of the entry, can be changed to anything as long as it's between" "
Then you can delete old
bcfg
entry that points to/BOOT/BOOTX64.EFI
withbcfg boot rm XX
whereXX
is the number identifier seen when you dobcfg boot dump
Optional: You can then boot into macOS/OSX and rename /BOOT to /BOOT.bak, leave it as it is if you're using windows/linux or delete it if you had it there for clover boot anyways.
Source: https://sourceforge.net/p/cloverefiboot/tickets/226/#d1a9/0222/8cc1
(Credits to /u/corpnewt and /u/Ressetkk for mentioning this to me, maybe I'll add efibootmgr
guide too, most linux users know how to use google tho)
Keep in mind:
On ANY windows cumulative or seasonal update/upgrade, your fake
bootmgfw.efi
will be replaced by a new one, or if you renamed it, a new one will be copied over, so you will need to rename/replace that file.If you like to use Grub2 to load linux, make sure you load GRUB2 from Clover and not the opposite (feasible, works sometimes, not recommended).
Now you will get to CLOVER screen but without windows access mostly (I'm sure you dont need to rename grubx64 for linux users, as most OEMs dont lock the firmware on it). So to add ANY EFI program to the boot list, you need to add this Custom Entry
to clover's config.plist
as shown here:
So for example bootmgfw.efi
renamed to bootmgfww.efi
Save your config.plist and try it out. You can replace path with \EFI\grub\grubx64.efi
to load GRUB2 or look where lilo
file is located and add it too.
To know more, go to:
http://www.insanelymac.com/forum/topic/298027-guide-aio-guides-for-hackintosh/?p=2029540
Last updated