
How to Resolve OpenCore Startup Failures and MBR Warnings on Ivy Bridge PCs
When installing macOS High Sierra on an Intel Core i5-3470 (Ivy Bridge) system, the boot process can halt due to CFG Lock settings in the BIOS or partition format issues. The debug log showing "EIST CFG Lock 1" and MBR partition warnings indicates that CPU power management is locked and the USB drive layout is incorrect.
1. Prerequisites
- Hardware Specs: Intel Core i5-3470 CPU, Ivy Bridge platform (iMac13,2 SMBIOS), compatible motherboard.
- Required Tools: ProperTree, MountEFI.
2. Compatibility Snapshot
- High Sierra Support: Ivy Bridge is natively supported in macOS High Sierra.
- Partition Requirement: OpenCore requires the USB drive to be partitioned as GUID Partition Table (GPT), not Master Boot Record (MBR).
3. Installation Preparation
- Re-format USB Installer: Open Disk Utility (or Rufus in GPT mode) and format the USB installer drive as GUID Partition Map, FAT32/OS X Extended.
- BIOS Configurations: Disable Secure Boot, CSM, and VT-d. Set SATA mode to AHCI.
4. EFI and config.plist Review
- Enable CFG Quirks: Under
Kernel -> Quirks, enableAppleCpuPmCfgLockandAppleXcpmCfgLock. This allows OpenCore to bypass the BIOS lock and prevents kernel panics. - Drivers: Ensure
HfsPlus.efiandOpenRuntime.efiare enabled in your configuration.
5. Post-Installation
- Disable CFG Lock: If your BIOS has a CFG Lock option, turn it Off. Once disabled, you can turn off the CPU lock Quirks in your config.plist.
6. Troubleshooting
Reported Issue: Boot loop on Startup
- Stuck after connecting drivers: The log indicates MBR partition size errors. Re-partition the installer drive as GPT. MBR partitions will cause read failures.
- AppleIntelCPUPowerManagement Panic: If the boot panic persists, double check that
AppleCpuPmCfgLockis set to True.
7. Dual Boot and Advanced Configuration
- Ensure that UEFI booting is prioritized in your motherboard BIOS settings to bypass Windows Boot Manager.
8. Verification, Maintenance and Rollback
- Verify Fix: Ensure OpenCore loads the boot selection picker without displaying partition warnings.
9. References and Glossary
- CFG Lock: A BIOS setting that prevents macOS from writing to the MSR 0xE2 register, causing instant panics.
Post a Comment