Skip to content
This repository has been archived by the owner on Sep 17, 2018. It is now read-only.

Post Installation

Alex James edited this page Mar 28, 2017 · 19 revisions

Running the GA-Z77X.sh script

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.

asciicast

Reboot, and you should now have a working macOS install.

Updating using the GA-Z77X.sh script

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.

asciicast

Manual configuration

HDA layout ID

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>
...