How to remove Windows and hide Tools and have a Clean OpenCore Boot Menu?
This mini-guide provides a structural approach to troubleshoot and fix the issue.
Prerequisites
- Confirm your hardware specifications (CPU, GPU, Motherboard).
- Ensure you have a bootable recovery USB and backup your EFI.
Fix Steps
- Boot with
-v keepsyms=1 debug=0x100to identify the exact kernel panic. - Validate your config.plist using ocvalidate.
- Ensure your EFI matches the Dortania guide specifications for your CPU generation.
Verification
- Reboot and verify if the functionality is restored and stable under typical usage.
Original Question:
|
We'll use OpenCore Post-Install guide to achieve what we want. Under Security > ScanPolicy it explains us how OC gets items and lists them in the Boot Picker. It scans Devices and File Systems with the config value we enter. Installation guide recommends us to set it to Guide says:
And gives us an example how to add more scan options like:
So, default value is calculated by adding up all 8 hexadecimal values. And in the example scanning USB device option is added. We should remember to convert hex values to decimal before copying it to the config.plist file. At this point I wanted to add booting from Time Machine option too and in order to do that we need to add OC_SCAN_ALLOW_FS_HFS:
For calculations we need hexadecimal calculator, OC guide recommends us using macOS calculator (⌘+3 activates hex mode) but we can use google search for the calculation too. Just search Decimal Conversion:
Now we need to add Also, if we want to have a Clean Boot Menu list we can set Misc -> Boot -> HideAuxiliary to We can customize it even more if we like. For instance, if we don't want SASEX, SCSI and PCI to be scanned and therefore excluded as we don't need them, we should only add up the other options.
If you don't have SATA you can exclude it too or have SATA but don't have NVME, it can be excluded too. Let's calculate the values above.
Decimal Conversion:
You can play with other values by checking the Post-Install Guide by yourself. Cheers! [link] [comments] |
Post a Comment