-
Notifications
You must be signed in to change notification settings - Fork 26
Post Installation
After going through the macOS setup process, open Terminal and cd
to the copied repo folder (on the USB disk). Run the script with the --install
argument.
Reboot, and you should now have a working macOS install.
When updates for Clover/kexts/config.plist are released, they will be added to the repo. To upgrade an existing install, run the script with the --update
argument. An upgrade will reinstall Clover, kexts, and EFI drivers. It will also recompile the DSDT and update config.plist; the ACPI
, Boot
, Devices
, KernelAndKextPatches
, and SystemParameters
sections in config.plist will be replaced. A copy of your current EFI folder (on the EFI system partition) will be backed up to the backups
directory in the cloned repo folder.
On motherboards with Realtek audio codecs, layout ID 3 enables HDMI audio for Intel HD Graphics 3000/4000. However, this removes support for analog surround sound. If you are not using Intel HD Graphics 3000/4000 and would like to enable analog surround sound, you can change the layout ID in config.plist to a different value (such as 1 or 2). A complete list of layout IDs (for each codec) can be found at the AppleALC wiki.
In most cases, the default layout ID should work. If you would like to change it, you can edit Devices/Audio/Inject
in config.plist:
...
<key>Devices</key>
<dict>
<key>Audio</key>
<dict>
<key>Inject</key>
<integer>28</integer>
</dict>
...