Jump to content

[GUIDE] How To Install El Capitan On Asus Z170M-Plus With Clover Using Pentium G4500


Frank Nitty
 Share

58 posts in this topic

Recommended Posts

This thread is a walkthrough on how to install El Capitan. These are fully detailed instructions to make it easier for newbs. PLEASE DO NOT PM ME FOR HELP. REPLY TO THIS GUIDE BELOW. THANKS

 

I wanna start off by thanking the following guys whose efforts inspired me to proceed in making this guide: stinga11 for his implementation of the FakeCPUID hack, rehabman for his kexts, ammulder for his Skylake Starter Guide, chris1111 and DwarfVador for their configuration setup ideas, Slice for Clover, toleda for his audio solution and vit9696 for his audio solution, and shout outs to Pike for the IOAPIC Fix and assisting me with applying his ssdtPRGen.sh script SSDT generation method.

 

       MY SPECS:

1.  Intel Pentium Processor G4500

2.  ASUS Z170M-PLUS Micro ATX Motherboard

3.  Mushkin Enhanced ECO2 512GB SSD

4.  Corsair Vengeance LPX 16GB (2x8GB) DDR4

5.  HGST Travelstar 7K1000 1TB 2.5" 7200RPM HDD

6.  Seagate Barracuda 3TB 3.5" 7200RPM HDD ST3000DM001

7.  LEPA AquaChanger 240 Liquid CPU Cooler

8.  Corsair Carbide 88R Mid-Tower Case

9.  LG Electronics 14x SATA Blu-ray Rewriter

10. PNY GTX 960 XLR8 4GB

11. EVGA SuperNOVA 750 G1 750W PSU

 

       WHAT YOU WILL NEED:

1.  Mac OS X 10.11 El Capitan [from Mac App Store]

2.  A computer running an Intel Processor

3.  Access to OS X on VMWare (for Windows), Mac, or Hackintosh

4.  A supported graphics card

5.  Clover v2.3k r3354 and up

6.  A USB flash drive at least 8 GB

7.  Update your system with the latest BIOS

 

       STEP 1: BIOS SETTINGS

1.  Start off by entering the BIOS and accessing Advanced Mode. Go to Exit to select 'Load Optimized Defaults'.

2.  Go to Boot and disable 'Fast Boot' and go to CSM (Compatibility Support Module) to enable 'Launch CSM'.

3.  Back out to Boot and scroll down to Secure Boot and access Key Management to disable 'Secure Boot State'. In order to do so you must clear any installed keys [delete each keys].

a. Access Secure Boot again and set OS Type to 'Other OS'.

4.  Scroll down to Hard Drive BBS Priorities to set boot sequence of the available hard disks.

5.  Go to Advanced System Agent (SA) Configuration and disable 'VT-d'.

6.  Scroll down to access Graphics Configuration and set 'Primary Display' to PCIE and disable 'iGPU Multi-Monitor'.

7.  Back out to Advanced and scroll down to access APM Configuration 'ErP Ready' and disable it [equates to "S3 only, Suspend to Ram"]; the rest of the options should be disabled by default.

8.  Go to Advanced CPU Configuration and disable 'Intel Virtualization Technology'.

9.  Scroll down to CPU Power Management Configuration to disable 'CFG lock'.

10. Go to Advanced Onboard Devices Configuration and turn off 'Serial Port Configuration' and 'Parallel Port Configuration'.

11. Go to Advanced USB Configuration and enable 'XHCI Hand-off'.

12. [Optional] Go to Ai Tweaker Scroll down to 'DRAM Frequency' and set it to the specified frequency of your memory.

13. [Optional] Go to Tool ASUS Overclocking Profile to save your BIOS settings profile [to a USB stick].

14. Go to Exit, 'Save Changes & Reset'.

 

        STEP 2: CREATING A BOOTABLE USB TO INSTALL OF EL CAPITAN 10.11

1.  Clover and the OS X installer are placed on separate partitions on the USB stick. This guide will use 'diskutil list' in Terminal instead of Disk Utility to format the USB with GPT partitioning for Clover UEFI support.

2.  You must determine its disk identifier before you can partition the USB. Plug the USB stick into a Mac (or Hackintosh), run Terminal and type 'diskutil list'.

The following screenshot will serve as a reference:

snZ0bWm.jpg

As you can see the the USB stick’s identifier is /dev/disk2.

3.  Type the following entry into Terminal to format the USB stick (two partitions, via GPT):

diskutil partitionDisk /dev/disk2 1 GPT HFS+J "OS X" R

During the process the following occurred:

  • /dev/disk2 GPT partitioning initiated
  • by default EFI was automatically created
  • remainder "OS X", HFS+J is partitioned

4.  It resulted in the following screenshot:

sYO4beh.jpg

Close Terminal

 

5.  We need to download and install the latest version of Clover (here) on the USB stick.

a.  Run the pkg, "Change Install Location" by selecting "OS X" (partition name) as the target of the install. Use the following settings below:

JnH0TCQ.jpg

aV6p6UK.jpg

 

Make sure that it shows "Installation Complete."

NOTE: When installing to HDD select "Install RC scripts on target volume" and/or "Install all RC scripts on all other boot volumes" and "Install Clover Preference Pane".

 

6.  You must copy your kexts to the EFI/ Clover folder. You can use EFI Mounter v3 when necessary to mount the EFI partition, just use "diskutil list" first to ensure you chose the right one for the USB stick.

a. Remove EFI/CLOVER/kexts/10.6, 10.7, 10.8, 10.9, 10.10, leaving just '10.11' and 'Other'.

b. Copy the required kexts FakeSMC.kext, NullCPUPowerManagement 1.0.0d2, VoodooPS2Controller.kext, and your ethernet kext (Intel I219-V) IntelMausiEthernet-V2.1.0d5 or AppleIntelE1000e 3.3.1 to the following directory: /EFI/CLOVER/KEXTS/10.11.

NOTE: If you are having trouble getting Ethernet to work you can also try copying IONetworkingFamily.kext from S/L/E to /EFI/CLOVER/KEXTS/10.11 with your networking kext.

riOtCHf.jpg

 

7.  We must apply the following mandatory patches:

a. IOAPIC Fix. Without this fix most things such as USB, SATA, ethernet, many PCI devices, sound devices, etc will not work.

  Use a text editor or a plist editor like PlistEdit Pro to modify your config.plist manually. Add this <dict> entry to EFI/CLOVER/config.plist in the KextsToPatch array:

<key>KextsToPatch</key>
       <array>
             <dict>
                  <key>Comment</key>
                  <string>Skylake APIC fix, discovered by Pike R. Alpha</string>
                  <key>Find</key>
                  <data>
                  wegQD7bw
                  </data>
                  <key>Name</key>
                  <string>AppleAPIC</string>
                  <key>Replace</key>
                  <data>
                  vhcAAACQ
                  </data>
             </dict>
</array>

b. FakeCPUID patch. Since the Pentium is not supported in 10.11, the following CPUID will convert it into an Ivy Bridge CPU. Add this <dict> entry to the config.plist:

<key>KernelAndKextPatches</key>
  <dict>
       <key>FakeCPUID</key>
       <string>0x0306A0</string>
       <key>KextsToPatch</key>
</dict>

or [Lynnfield]

<key>KernelAndKextPatches</key>
  <dict>
       <key>FakeCPUID</key>
       <string>0x0106E0</string>
       <key>KextsToPatch</key>
</dict>

c. USB patch. It is required to raise the port limit in order to boot the USB installer. Otherwise garbled text with the message "Still waiting for root device" and a circle with a slash in the middle will appear onscreen. This process involves installing USBInjectAll.kext as well. Add this <dict> entry to the config.plist:

<key>KextsToPatch</key>
  <array>
             <dict>
                  <key>Comment</key>
                  <string>change 15 port limit to 30 in AppleUSBXHCIPCI</string>
                  <key>Find</key>
                  <data>
                  g72M/v//EA==
                  </data>
                  <key>Name</key>
                  <string>AppleUSBXHCIPCI</string>
                  <key>Replace</key>
                  <data>
                  g72M/v//Hw==
                  </data>
             </dict>
</array>

Be sure to copy USBInjectAll.kext to /EFI/CLOVER/KEXTS/10.11.

 

d. SMBIOS. With the config file still opened in your text/plist editor, scroll down to SMBIOS section to add the following SMBIOS system definition:

<key>SMBIOS</key>
  <dict>
       <key>Manufacturer</key>
       <string>Apple Inc.</string>
       <key>ProductName</key>
       <string>MacPro3,1</string>
       <key>Trust</key>
       <false/>
</dict>

NOTE: Macmini6,2, iMac13,2 and iMac13,1 support speedstep.

You can also do this using Clover Configurator: In the SMBIOS section, click the magic wand to select a SMBIOS relevant to your hardware (e.g. iMac14,2) – and close the screen and File/Save.

    

e. GUI. Here you indicate the theme you want to use that you installed by entering the title in the string. I chose to use "random" as shown below:

<key>GUI</key>
<dict>
       <key>Mouse</key>
       <dict>
             <key>DoubleClick</key>
             <integer>500</integer>
             <key>Enabled</key>
             <true/>
             <key>Mirror</key>
             <false/>
             <key>Speed</key>
             <integer>8</integer>
       </dict>
       <key>Scan</key>
       <true/>
       <key>Theme</key>
       <string>random</string>
</dict>

f. Boot Flag. NVIDIA graphics cards especially 'Maxwell' currently lack support natively in OS X. To correct this problem in order to boot the installer it requires "nv_disable=1". In addition to that, it is necessary to use "-v" to monitor if any problems arise. Add this <dict> entry to the config.plist:

<key>Boot</key>
  <dict>
       <key>Arguments</key>
       <string>-v nv_disable=1</string>
</dict>

g. SIP. Apple has implemented 'rootless' security or System Integrity Protection (SIP) (reference sources 1, 2, & 3) in 10.11 which restricts users from modifying system folders/files, and as a result it locks down system folders and files against hacks and root attacks, making the system safer. However, SIP must be disabled in order to install anything (i.e., kexts) into protected system folders. Add this <dict> entry to the config.plist:

<key>RtVariables</key>
  <dict>
       <key>BooterConfig</key>
       <string>0x28</string>
       <key>CsrActiveConfig</key>
       <string>0x3</string>
</dict>

h. Audio Fix. This Skylake board comes with a Realtek ALC887 audio chip. Realtek onboard audio device has been changed in ACPI to 'HDAS'. In order to use toleda's CloverALC (discussed further in this guide), you must add the following patch  in the config.plist:

<key>ACPI</key>
<dict>
<key>DSDT</key>
<dict>
       <key>Patches</key>
       <array>
             <dict>
                  <key>Comment</key>
                  <string>Rename HDAS to HDEF</string>
                  <key>Find</key>
                  <data>
                  SERBUw==
                  </data>
                  <key>Replace</key>
                  <data>
                  SERFRg==
                  </data>
</dict>
</array>

8. Preparing OS X partition. Download OS X v10.11.0 (15A284) El Capitan [Mac App Store]; "Install OS X El Capitan" will be in /Applications.

a. Right-click "Install OS X El Capitan" Show Package Contents Contents ShareSupport Double click to mount "InstallESD.dmg".

b. Once "OS X Install ESD" appears, use ShowHiddenFiles to show hidden files.

c. Now you will see an image called "BaseSystem.dmg" appear. Mount it by right-clicking and opening it with DiskImageMounter...

d. Open Disk Utility. Select and highlight the volume "OS X Base System", click "Restore" at the top-right, drag the volume into "Source" field, and drag the USB [OS X] partition (you already created) to the "Destination" field where you will restore the image: click the "Restore" button then "Erase"...

e. After the process is complete, you'll now have (2) "OS X Base System" present in Finder. Eject the image "BaseSystem.dmg" and close Disk Utility.

f. On the remaining volume "OS X Base System" (USB stick), go to System/Installation and delete Packages symlink.

g. Open "OS X Install ESD" in a new Finder window, and copy the Packages folder to System/Installation folder inside "OS X Base System".

h. Copy BaseSystem.chunklist, BaseSystem.dmg, AppleDiagnostics.chunklist, and AppleDiagnostics.dmg from "OS X Install ESD" and copy it to the volume root.

i. Create a new folder named "Kernels" in System/Library on the USB stick. Use Pacifist v.3.2.17+ to extract "kernel" from "OS X Install ESD/Packages/Essential.pkg [/system/Library/Kernels/kernel]" and place "kernel" into System/Library/Kernels/ location. Or download the vanilla version here.

j. Delete following kexts from System/Library/Extensions/:  AppleIntelCPUPowerManagement.kext and AppleIntelCPUPowerManagementClient.kext.

k. Use ShowHiddenFiles to hide the hidden files, and quit the application.

l. With the USB installer ready, remember before restarting system to change boot priority of USB stick to first to install El Capitan on the hard disk of choice.

m. Once installer is finished, it will automatically restart the system.

n. Now reboot from the USB installer and select the drive where you installed El Capitan at the boot menu screen and use boot flag nv_disable=1 to log in.

 

       STEP 3: Mac OS X 10.11 Post-Installation

1.  As the system is loading, you'll be prompted to the Mac OS X Welcome screen.

a. Select your country then click "right arrow" to go to the next screen.

b. Select "My computer does not connect to the Internet."

c. Select "Don’t transfer any information now."

d. Do not "Enable Location Services on this Mac"

e. Agree to "Terms and Conditions."

f. Enter your name, password, and hint and Continue.

g. Confirm "Diagnostics & Usage"

h. Wait a moment for the OS X desktop to load.

i. When prompted to back up any disk with Time Machine, click on the "Don't Use" button.

 

       STEP 4: Mac OS X 10.11 Post-Installation (Continued)

1.  Mount the EFI partition of the USB stick with EFI Mounter v3 and copy the 'EFI' folder to the EFI partition of El Capitan boot disk.

2.  Install Clover v2.3k on the El Capitan install HDD partition you plan to boot from. In addition to the settings configured earlier, select "Install RC scripts on target volume" and "Install Clover Preference Pane" when installing to the HDD.  Installing RC scripts enables nvram variables required for iCloud and other services. It processes logs that are located in /Library/Logs/CloverEFI. You can also type bdmesg > Desktop/boot.txt in Terminal to get them manually.

3.  Edit the config.plist from your boot disk in EFI/CLOVER/ by adding the following <dict> entries:

a.  Change boot flag to "nvda_drv=1" without "-v"

<key>Boot</key>
<dict>
      <key>Arguments</key>
      <string>nv_drv=1</string>
</dict>

NOTE: Ensure you have updated to the latest version FakeSMC kext.

If your 'hack' happens to instant reboot loop randomly like mine did, to fix it I added cpus=1 in the boot arguments in Clover config.plist.

Boot arguments: nvda_drv=1 cpus=1

SMBIOS: iMac14,2 system definition

Situations may vary when accessing 10.11 with GTX 960

Video output should be connected through HDMI

 

b. Hide UEFI partitions. To hide internal UEFI (i.e., "Boot Windows from Recovery", "Boot Windows from EFI") you have to use Scan/Legacy=false:

<key>GUI</key>
<dict>
      <key>Scan</key>
      <dict>
           <key>Legacy</key>
           <false/>
   </dict>

c. Designate name of boot menu entries (Renaming Mac/Windows). In the Clover bootloader menu you will notice all EFI Windows partitions labeled "Boot Microsoft EFI boot menu from EFI [or SYSTEM]". The Windows partition is called EFI but there's also a Mac partition called EFI which is hidden by default in the Clover boot menu so it's a nonfactor. The volume names are what Clover shows by default. In order to change what the Clover boot menu shows your volume name to be you will have to specify its details under GUI/Custom/Entries section in your config.plist. There are 3 <key> tags necessary to edit in this section: Volume, FullTitle, and Type. You can refer to my personal settings below for help.

E.g., in my config.plist, my OS X volume is called "ELCAP" because that's what I named the partition I installed OS X on. It can also be seen as a bootloader screen entry as "Boot Mac OS X from XXXXXXXX" where XXXXXXXX is the volume name. "FullTitle" is the name you want the entry to say, i.e.: OS X 10.11 El Capitan. "Type" is where you indicate what type of OS it is, i.e.: OSX (or Windows). Tags such as "Hidden" and "Disabled" are self-explanatory, while the "NoCaches" tag designates whether you want to boot without caches.

NOTE:  Adding "InjectKexts" causes infinite loading on the Apple logo screen.

NOTE: Although you’re able to indicate if the "VolumeType" you are using is Internal, External, Optical or FireWire, I have found through tests that after adding the "VolumeType" tag for the OS X volume in the config.plist followed by restarting my system, it would initiate a constant reboot loop, making my system incapable POSTing and requiring a CMOS reset to fix: YOU HAVE BEEN WARNED.

<key>GUI</key>
<dict>
	<key>Custom</key>
	<dict>
		<key>Entries</key>
		<array>
			<dict>
				<key>Volume</key>
				<string>EFI</string>
				<key>FullTitle</key>
				<string>Windows 10</string>
				<key>Hidden</key>
				<false/>
				<key>Disabled</key>
				<false/>
				<key>Type</key>
				<string>Windows</string>
				<key>VolumeType</key>
				<string>Internal</string>
			</dict>
			<dict>
				<key>Volume</key>
				<string>ELCAP</string>
				<key>FullTitle</key>
				<string>OS X 10.11 El Capitan</string>
				<key>Hidden</key>
				<false/>
				<key>Disabled</key>
				<false/>
				<key>InjectKexts</key>
				<false/>
				<key>NoCaches</key>
				<false/>
				<key>Type</key>
				<string>OSX</string>
				<key>VolumeType</key>
				<string>Internal</string>
			</dict>
		</array>
	</dict>

d. Remove Recovery partition. Deleting and merging a partition with 'diskutil' from the command line is the most precise method to remove the partition since it targets the recovery disk directly and merges it with the full El Capitan partition.

  Launch the Terminal and type the following into the command line:

diskutil list

  This will print out your drives partition scheme and look something like this:

NTZchVH.jpg

  Look for "Recovery HD" and see which identifier it is uses. In this screenshot it’s disk2s3.

  To remove that partition we use the following command (you can also use the volume name):

diskutil eraseVolume HFS+ Blank /dev/disk2s3

  The partition will be erased. You’ll now have a blank partition sitting around, so you’ll want to merge that with your other El Capitan partition:

diskutil mergePartitions HFS+ ELCAP disk2s2 disk2s3

  This will merge the two partitions, with disk2s2 absorbing the space from disk2s3 and expanding, it causes data loss so don’t expect this to preserve anything.

4.  10.11.0 breaks compatibility with native graphics kexts so you will not be able to boot without nv_disable=1 flag.

a. Download and install NVIDIA Web Driver 346.03.02f02 to enable NVIDIA Graphics Cards because they won't work OOB without them.

NOTE: Remember to go to the NVIDIA Driver Manager menu bar at the top, change the settings to use Web drivers. Changes will take effect after restart.

5.  Reboot without the USB installer and choose the El Capitan boot disk.

6.  Download CUDA 7.5.20 drivers (increases GPU computing performance) needed for 10.11.0 support and install.

7.  [OPTION 1] Install AppleALC to enable native audio by injecting the layout id supported for ALC887 through dynamic patching without modifying any kexts. Audio will no longer be affected after each OS X update and SIP can remain enabled. More details here.

NOTE: AppleHDA must be native, original and unpatched.

a. Mount EFI partition and add the following entry under Devices/Audio in the config.plist to inject working layout id 11 (or 13 or 1).

<key>Devices</key>
<dict>
      <key>Audio</key>
      <dict>
           <key>Inject</key>
           <integer>11</integer>
   </dict>

b. Download the latest version of AppleALC and copy it to CLOVER/kexts/10.11 or CLOVER/kexts/Other.

NOTE: Rebuild kext cache if you have removed a modded AppleHDA to replace it with a native one by using Kext Utility or 'force rebuild cache' in Terminal:

sudo –s

sudo touch /System/Library/Extensions

 

8.  [OPTION 2] Install the following patch associated with Realtek ALC887 AppleHDA Audio (by Toleda):

a. Mount EFI partition, verify "Disable SIP" entry CsrActiveConfig=0x3 is in config.plist.

b. Download audio_cloverALC-110.command.zip and extract "audio_cloverALC-110_v1.0q10.command".

c. No edits made to any native AppleHDA.kext file, 2-4 files added to Resources folder.

 

NOTE: There may be noticeable pops before starting playback which is caused by OS X putting the audio codec to sleep. Disable AFGLowPowerState in config.plist with following <dict> entry:

<key>Devices</key>
<dict>
    <key>Audio</key>
    </dict>
        <key>AFGLowPowerState</key>
        <false/>
    </dict>

If popping is still exists after using the method above, try using antipop.

 

 

NOTE: There may be noticeable distortion after around 2 minutes of audio playback. Update to the latest version of Clover (or downgrade to ver. 3354) and add UseARTFrequency=false entry in the config.plist:

<key>CPU</key>
<dict>
      <key>UseARTFrequency</key>
      <false/>
</dict>
<key>Devices</key>
 <dict>

9.  Create a DSDT??? (More to come later)

10. [OPTION 1] Create a SSDT (Secondary System Description Table) to configure the maximum clock speed.

a. Download Pike's ssdtPRGen.sh script which should auto-copy into your home directory, 'Volumes/Users/<username>' folder. Open Terminal and type the following:

curl -o ~/ssdtPRGen.sh https://raw.githubusercontent.com/Piker-Alpha/ssdtPRGen.sh/Beta/ssdtPRGen.sh

b. Next, set the execute/search bits: chmod +x ~/ssdtPRGen.sh

c. Run ssdtPRGen.sh script for first time without any arguments and let it download all the data that you need: ./ssdtPRGen.sh

d. The Skylake.cfg with Pentium information should have already downloaded.

e. Once finished you will have the ssdt.aml on the ~/library/ssdtPRGen/. Move it to /EFI/CLOVER/ACPI/patched.

NOTE: If you come across issues try the following:

  Use Terminal to ensure Skylake.cfg is in the 'Data' folder by typing: open ~/library/ssdtPRGen/Data

  You can remove any previously generated and downloaded script file by typing: sudo rm -R ~/Library/ssdtPRGen

  You can rerun another freshly downloaded ssdtPRGen.sh script with your processor type: ./ssdtPRGen.sh

  For additional help see also: ./ssdtPRGen.sh -help

11. [OPTION 2] Create a SSDT (Secondary System Description Table) to configure the maximum clock speed.

a. Download the Pike’s script v14.1 (modified for i-core processors) and put it on your desktop. Use it only for the PC it is running from. The script reads some information specific about your CPU and its number of cores.

b. Open Terminal and type "sudo" then leave a space and drag the script file into the Terminal window then leave a space and type in the Turbo Speed (Maximum Turbo Frequency) for your processor and then press enter.

e.g., Intel Pentium G4500 type code:

sudo /Users/"YourUsername"/Desktop/ssdtPRGen.sh -TURBO 3500

Type your password when prompted and press Enter.

c. Ignore the following "Error: Unknown processor model ..." since the CPU is unsupported.

d. A decompiled file called SSDT.aml will generate in a hidden folder "tmp". Type "open /tmp" (no quotations) to reveal its location.

e. Mount EFI using EFI Mounter v3 and place SSDT.aml into /Volumes/EFI/EFI/CLOVER/ACPI/patched/

12. Installing the following kexts/widget is optional. Mount the EFI partition to copy the kexts into the /EFI/CLOVER/KEXTS/10.11 folder. Install the widget using Launchpad Dashboard:

  HWSensors 6.19.1406 Binaries (with FakeSMC): Helps you monitor CPU, memory, disks, network, temperatures, fans, load/uptime, and processes.

  Install iStat Pro 4.92 r2, a highly configurable widget that lets you monitor every aspect of your Mac including CPU, memory, disks, network, battery, temperatures, fans, load & uptime and processes.

 

       STEP 5: Updating to 10.11.4

1.  Download and install OS X El Capitan 10.11.4 Combo Update.

2.  After restarting, booting from the El Capitan partition presents the following error:

OsxAptioFixDrv: Error - requested memory exceeds our allocated relocation block

a. This is caused by the lack of support for the OsxAptioFixDrv-64 in 10.11.4 which is intended to fix memory map issues on most UEFI systems, mainly in AMI BIOS.

b. Plug the USB installer into another Mac (or Hackintosh) and reinstall the latest version of Clover (here) on the USB stick. Be sure to select the checkbox OsxAptioFix2Drv-64 instead of OsxAptioFixDrv-64.

c. Once it completes, mount EFI of the USB stick using EFI Mounter v3 and remove OsxAptioFixDrv-64.efi from /EFI/CLOVER/drivers64UEFI/.

3.  Reboot using the USB installer and choose the El Capitan install drive. Mount EFI of the El Capitan partition and remove OsxAptioFixDrv-64.efi and copy OsxAptioFix2Drv-64.efi from the USB stick to /EFI/CLOVER/drivers64UEFI/.

4.  Reinstall audio by patching AppleHDA with audio_cloverALC-110.command.zip [for OPTION 2].

5.  Accept the popup window that prompts you to download and install the latest the NVIDIA Web Driver 346.03.06f01 to proceed.

Download CUDA 7.5.26 drivers needed for 10.11.4 support from NVIDIA and install and reboot.

 

       STEP 6: Updating to 10.11.5

1.  Download and install OS X El Capitan 10.11.5 Combo Update.

2.  After restarting, accept the popup window that prompts you to download and install the latest the NVIDIA Web Driver 346.03.10f01 to proceed.

3.  Download CUDA 7.5.29 drivers needed for 10.11.5 support from NVIDIA and install and reboot.

4.  Reinstall audio by patching AppleHDA with audio_cloverALC-110.command.zip [for OPTION 2].

 

       STEP 7: Updating to 10.11.6

1.  Download and install OS X El Capitan 10.11.6 Combo Update.

2.  After restarting, accept the popup window that prompts you to download and install the latest  NVIDIA Web Driver 346.03.15f01 / NVIDIA Web Driver 346.03.15f02 to proceed.

3.  Download CUDA 7.5.30 drivers needed for 10.11.6 support from NVIDIA and install and reboot.

4.  Reinstall audio by patching AppleHDA with audio_cloverALC-110.command.zip [for OPTION 2].

config-WORKING for G4500 boot.plist.zip

EFI-Mounter-v3.zip

ssdtPRGen.sh-master.zip

  • Like 5
Link to comment
Share on other sites

hello i have config:

CM: ASUS H110M A D3 
Proceseur: Pentium G4500 - 3.5Ghz ( Skylate ) 
Memoir: HyperX FURY Black Low Voltage 4GB 1866MHz DDR3L CL10 DIMM 1.35V 
DD Sata:500Go
Carte graphique: asus geforce gt710

 

 

I followed all the stage but I have a panic error cpu 0 caller see the video I have to try sxAptioFixDrv - 64.efi by OsxAptioFixDrv2-64.efi but nothing .. any idea? thank you

ps: i have us your config.plist

 

https://www.youtube.com/watch?feature=player_embedded&v=7YutIrEvvhc

Link to comment
Share on other sites

hello i have config:

CM: ASUS H110M A D3 

Proceseur: Pentium G4500 - 3.5Ghz ( Skylate ) 

Memoir: HyperX FURY Black Low Voltage 4GB 1866MHz DDR3L CL10 DIMM 1.35V 

DD Sata:500Go

Carte graphique: asus geforce gt710

 

 

I followed all the stage but I have a panic error cpu 0 caller see the video I have to try sxAptioFixDrv - 64.efi by OsxAptioFixDrv2-64.efi but nothing .. any idea? thank you

ps: i have us your config.plist

 

https://www.youtube.com/watch?feature=player_embedded&v=7YutIrEvvhc

Make sure you are not using both OsxAptioFixDrv-64 and OsxAptioFix2Drv-64 at the same time; you have to use one or the other. Also make sure your BIOS settings match what I described in this guide. Also make sure that the FakeCPUID is in the config.plist.

Link to comment
Share on other sites

yes I am using the config bios well described and I 'm the fake cpudid
 
yes I am using the config bios well described and I 'm the fake cpudid
 

yes I am using the config bios well described and I 'm the fake cpudid

 

<key>KernelAndKextPatches</key>

  <dict>
       <key>FakeCPUID</key>
       <string>0x0306A0</string>
       <key>KextsToPatch</key>
</dict>

Link to comment
Share on other sites

 

yes I am using the config bios well described and I 'm the fake cpudid
 
yes I am using the config bios well described and I 'm the fake cpudid
 

yes I am using the config bios well described and I 'm the fake cpudid

 

<key>KernelAndKextPatches</key>

  <dict>

       <key>FakeCPUID</key>

       <string>0x0306A0</string>

       <key>KextsToPatch</key>

</dict>

 

Ok... So are you using OsxAptioFixDrv-64 or OsxAptioFix2Drv-64? You should be using OsxAptioFixDrv-64 only when setting up the USB installer. If all else fails then start over because there is something you missed or omitted on your end. 
On another note, I noticed the motherboard you are using isn't the same as the one I had used in my guide and it could possibly have something to do with why you aren't able to succeed.
Link to comment
Share on other sites

Ok use 10.11.0 El capitan avec OsxAptioFixDrv-64 Sorry for my english French user ... :) Exept that I had to make the USB key with install chris1111 because in disk jtilitaire I have not restored El Capitan ..

Ok... Since you are using chris1111's method to install OS X I would suggest talking to him regarding any issues you are having. Yes, the language barrier between me and you is making it difficult to understand what you are saying at times. 

Edited by Frank Nitty
Link to comment
Share on other sites

ok I have it already talk but no Skylake processor chris1111 :( I have created in the VMware USB key with restored option on Yosemite ?

I'm not sure if I understand you correctly, but Yosemite isnt supported Skylake processors. 

Link to comment
Share on other sites

I do not find how the usb key created with " restored " but I was able to do so makes the tutorial as you from A to Z but toujour the same thing ..

 

config.plist not good ?

The config list is good... However you are not using the same motherboard as me which could be the possibility why it is not working... "Restore is in Disk Utility. If you are trying to create USB installer within 10.11 then Disk Utility has been gimped and will not include it. You must use 10.10 or below to create installer

Link to comment
Share on other sites

OK, I just made the USB boot key exactly as you and toujour the same mistake I have had the same problem as you, but me it does not work heck

The only thing I can think of is to flash the latest bios. Other than that, I am out of ideas. I dont have the same board you are using so I am not able to replicate the problem or troubleshoot what could be hindering your install. 

Link to comment
Share on other sites

updated the bios made ​​toujour this cpu 0 caller : / I think I'll leave windows : ' (

 

 

 

 

your motherboard and that the bie ? AC works well no worries? http://www.cdiscount.com/informatique/cartes-meres/asus-carte-mere-z170-m-plus/f-10765-z170mplus.html#mpos=1|cd

The link you presented is my motherboard. What is AC?

Link to comment
Share on other sites

I dont no AC lol Google translater i havé shiping this motherboard

Good... your best bet would be to get the same motherboard I am using which is the  Z170M-Plus and return your ASUS H110M-A D3 or sell it.

Link to comment
Share on other sites

  • 1 month later...

Hey Frank,

 

Just wanted to give a HUGE thanks for contributing this guide.  I just completed a new build with a Z170M-Plus, a Skylake i7 and GTX 960.  Because of your guide, it was a super easy and successful process!

 

One small problem I ran into last night after upgrading to 10.11.5 through the App Store.  At first everything seemed fine.  Rebooted and went into non-nvidia graphics, the nvidia web drivers got downloaded though the system preference pane and the machine rebooted successfully into 10.11.5 with full graphics.  I thought great, no problems, everything good and worked for a while before shutdown the machine.  Upon starting this morning, the machine kernel panics and reboots unless I boot with nv_disable=1.  I'm going to try re-installing the NVIDIA web drivers, just wondering if you've seen any issues like this?

 

Thanks again for your great guide!

 

BB

  • Like 2
Link to comment
Share on other sites

Hey Frank,

 

Just wanted to give a HUGE thanks for contributing this guide.  I just completed a new build with a Z170M-Plus, a Skylake i7 and GTX 960.  Because of your guide, it was a super easy and successful process!

 

One small problem I ran into last night after upgrading to 10.11.5 through the App Store.  At first everything seemed fine.  Rebooted and went into non-nvidia graphics, the nvidia web drivers got downloaded though the system preference pane and the machine rebooted successfully into 10.11.5 with full graphics.  I thought great, no problems, everything good and worked for a while before shutdown the machine.  Upon starting this morning, the machine kernel panics and reboots unless I boot with nv_disable=1.  I'm going to try re-installing the NVIDIA web drivers, just wondering if you've seen any issues like this?

 

Thanks again for your great guide!

 

BB

You're welcome, glad I could help. Sometimes my machine restarts after its attempt at loading OS X once the meter reaches. Like Allan said I wouldn't suggest not to reinstall the Web drivers. However allow OS X to reboot and let the meter load and your system should boot fine.

  • Like 2
Link to comment
Share on other sites

 Share

×
×
  • Create New...