Contribute
Register

Can't boot Clover UEFI on Asus P8Z77-M Pro

Status
Not open for further replies.
Up to version 2000, PM has always worked using "<key>GenerateIvyStates</key>" with NO SSDT, I don't know if it works with SB CPU as I don't mix platforms. It appears GenerateIvyStates has been depreciated anyway.

I haven't had time to test on the P8Z77-M Pro but this is all I need for Haswell. Sleep/wake and speed-step working fine.

PHP:
    <key>ACPI</key>
    <dict>
        <key>DSDT</key>
        <dict>
            <key>Name</key>
            <string>DSDT.aml</string>
        </dict>
    <key>SSDT</key>
    <dict>
            <key>DropOem</key>
            <true/>
            <key>Generate</key>
            <false/>

    </dict>

I'll try to test Z77 tonight if I can get time...

EDIT:

P8Z77-M Pro, Bios 2003, UEFI Boot, CMS Disabled. This config works fine here, sleep/wake, speed-step:

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>ACPI</key>
    <dict>
        <key>DSDT</key>
        <dict>
            <key>Name</key>
            <string>DSDT.aml</string>
        </dict>
    <key>SSDT</key>
    <dict>
            <key>DropOem</key>
            <true/>
            <key>Generate</key>
            <true/>
    </dict>
</dict>    
    <key>Boot</key>
    <dict>
        <key>Arguments</key>
        <string>-v</string>
        <key>DefaultVolume</key>
        <string>SSD</string>
        <key>Fast</key>
        <false/>
        <key>Legacy</key>
        <string>PBR</string>
        <key>Log</key>
        <false/>
        <key>Timeout</key>
        <integer>3</integer>

    </dict>
    <key>Devices</key>
    <dict>

        <key>USB</key>
        <dict>
            <key>FixOwnership</key>
            <true/>
            <key>Inject</key>
            <false/>
        </dict>
    </dict>
    <key>GUI</key>
    <dict>
        <key>Scan</key>
        <true/>
        <key>TextOnly</key>
        <false/>
        <key>Theme</key>
        <string>mrengles</string>
    </dict>
    <key>KernelAndKextPatches</key>
    <dict>
        <key>Debug</key>
        <false/>
        <key>KernelCpu</key>
        <false/>
        <key>AsusAICPUPM</key>
        <false/>
        <key>AppleRTC</key>
        <true/>
        <key>KextsToPatch</key>
        <array>
            <dict>
                <key>Name</key>
                <string>VoodooHDA</string>
                <key>Find</key>
                <data>SGVhZHBob25lcwA=</data>
                <key>Replace</key>
                <data>VGVsZXBob25lcwA=</data>
            </dict>
            <dict>
                <key>Name</key>
                <string>AppleAHCIPort</string>
                <key>Comment</key>
                <string>External icons patch</string>
                <key>Find</key>
                <data>RXh0ZXJuYWw=</data>
                <key>Replace</key>
                <data>SW50ZXJuYWw=</data>
            </dict>
        </array>
    </dict>
    <key>Graphics</key>
    <dict>
        <key>Inject</key>
        <false/>
        <key>LoadVBios</key>
        <true/>
        <key>PatchVBios</key>
        <false/>
    </dict>
    <key>RtVariables</key>
    <dict>
        <key>LogEveryBoot</key>
        <string>No</string>
        <key>LogLineCount</key>
        <integer>3000</integer>
        <key>MountEFI</key>
        <true/>
    </dict>
    <key>SMBIOS</key>
    <dict>
        <key>BiosVersion</key>
        <string>IM131.88Z.010A.B05.1210121459</string>
        <key>Board-ID</key>
        <string>Mac-FC02E91DDD3FA6A4</string>
        <key>BoardSerialNumber</key>
        <string>C02LP0L401234DNMP</string>
        <key>ProductName</key>
        <string>iMac13,2</string>
    </dict>
    <key>SystemParameters</key>
    <dict>
        <key>CustomUUID</key>
        <string>511CE200-1000-4000-9898-011103040506</string>
        <key>InjectSystemID</key>
        <true/>
    </dict>
</dict>
</plist>

Luck with it.
 
@kduvernay thanx a lot! When I use this one. I can sleep/wake and shutdown. Now going for some day-to-day testing if it's stable.

Question about
Code:
<key>DropOem</key>
<true/>

Clover-Wiki states
Drops all internal SSDT tables to avoid conflicts when generating an SSDT for your processor, which contains P- and C-States. Clover can do this automatically or you can specify an external file, which will be loaded from EFI/OEM/[model]/ACPI/patched.

Hmmm if I'm interpreting properly it means it drops ALL SSDT-tables. I thought, last time I fiddled with Clover, it wasn't optimal to drop all SSDT's. eg. drop Sata-SSDT will decrease SATA-performance.

There is also/ or a DropTables-entry you can set in Clover;
Code:
<key>DropTables</key>
<array>
  <dict>
    <key>Signature</key>
    <string>SSDT</string>
    <key>TableId</key>
    <string>SataTabl</string>
  </dict>
  <dict>
    <key>Signature</key>
    <string>SSDT</string>
    <key>TableId</key>
    <string>SataAddr</string>
  </dict>
  <dict>
    <key>Signature</key>
    <string>BGRT</string>
  </dict>
  ...
</array>
Drop OEM ACPI tables by signature and/or table identifier.
Maybe it's possible to just drop Cpu-SSDT. First have to find out what's it's name. What do you guys think?

This is my config.plist running v. 2003 PMPatched UEFI-bios
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>ACPI</key>
    <dict>
        <key>DSDT</key>
        <dict>
            <key>Name</key>
            <string>DSDT.aml</string>
        </dict>
    <key>SSDT</key>
    <dict>
            <key>DropOem</key>
            <true/>
            <key>Generate</key>
            <true/>
    </dict>
</dict>    
    <key>Boot</key>
    <dict>
        <key>Arguments</key>
        <string>-v</string>
        <key>DefaultVolume</key>
        <string>OSX Mountain Lion</string>
        <key>Fast</key>
        <false/>
        <key>Legacy</key>
        <string>PBR</string>
        <key>Log</key>
        <false/>
        <key>Timeout</key>
        <integer>3</integer>

    </dict>
    <key>Devices</key>
    <dict>

        <key>USB</key>
        <dict>
            <key>FixOwnership</key>
            <true/>
            <key>Inject</key>
            <false/>
        </dict>
    </dict>
    <key>GUI</key>
    <dict>
        <key>Scan</key>
        <true/>
        <key>TextOnly</key>
        <false/>
        <key>Theme</key>
        <string>mrengles</string>
    </dict>
    <key>KernelAndKextPatches</key>
    <dict>
        <key>Debug</key>
        <false/>
        <key>KernelCpu</key>
        <false/>
        <key>AsusAICPUPM</key>
        <false/>
        <key>AppleRTC</key>
        <true/>
        <key>KextsToPatch</key>
        <array>
            <dict>
                <key>Name</key>
                <string>AppleAHCIPort</string>
                <key>Comment</key>
                <string>External icons patch</string>
                <key>Find</key>
                <data>RXh0ZXJuYWw=</data>
                <key>Replace</key>
                <data>SW50ZXJuYWw=</data>
            </dict>
        </array>
    </dict>
    <key>Graphics</key>
    <dict>
        <key>Inject</key>
        <false/>
        <key>LoadVBios</key>
        <false/>
        <key>PatchVBios</key>
        <false/>
    </dict>
    <key>RtVariables</key>
    <dict>
        <key>LogEveryBoot</key>
        <string>No</string>
        <key>LogLineCount</key>
        <integer>3000</integer>
        <key>MountEFI</key>
        <true/>
    </dict>
    <key>SMBIOS</key>
    <dict>
        <key>ProductName</key>
        <string>iMac12,1</string>
    </dict>
    <key>SystemParameters</key>
    <dict>
        <key>InjectSystemID</key>
        <true/>
    </dict>
</dict>
</plist>
 
If you are not using a custom SSDT in the ACPI>patched folder then you can set "DropOem" to false and let Clover figure it out. The Wiki has not been updated for a few days and "Generate" has been depreciated/removed so you should remove that entry as well. I have no reason to use "DropTables" and therefore don't.

I personally consider "less is best", just continue your own testing for what works for you...
 
@kduvernay did you generate a SSDT and put it in /acpi/patched? If yes, why would you set generate=true?

About your custom DSDT-file did you patch it with MaciASL and PJAML-Asus-repo or did you have an alternative method? I like to find out the difference in our systems? I've patched DSDT from dumped version in Chameleon and patched it with PJALM-Asus-repo. With my current config I have wake-issues and shutdown issue but it only happens random not every time. Maybe dumping DSDT by Clover and re-patch it can help don't know it's just a guess.

EDIT: Okay I dumped ACPI-tables with F4-option in Clover-menu. The new dumped DSDT got patched with MaciASL. But shutdown doesn't get fixed. Hmm.... that's odd cause that patch is part of the PJAML-repo. So FixDSDT=0x0004 seems to do the trick in config.plist......fingers crossed not to fast!

Code:
<key>Generate</key><false/>
in DSDT-section along with SSDT.aml in /acpi/patched results in a KP. Hmmmm also odd.
 
I seem to be having boot errors with similar setups as written in this thread

I am curious since I haven't patched my BIOS should I change
PHP:
<key>AsusAICPUPM</key>
<false/>
to true?

and if I have a GTX 660ti (or a GTX 760) and patched my dsdt for a generic video card should I alter any of these settings?

PHP:
    <dict>
        <key>Inject</key>
        <false/>
        <key>LoadVBios</key>
        <true/>
        <key>PatchVBios</key>
        <false/>
    </dict>

I can't get past an error referring to mach_kernel not found and allocation errors
 
I seem to be having boot errors with similar setups as written in this thread

I am curious since I haven't patched my BIOS should I change
PHP:
<key>AsusAICPUPM</key>
<false/>
to true?
Yes you have to. Why just not flash that sucker?! About you GPU i have no clue!
 
Thanks for the response. Now I'm getting

PHP:
<!-- Ususal stuff here, doesn't look as important -->
AppleACPIPlatformExpert::start failed
panic(cpu 0 caller 0xffffff80034649c1): "Unable to find driver for this platform: \"ACPI\".\n"@/SourceCache/xnu/xnu-2050.48.12/iokit/Kernel/IOPlatformExpert.cpp:1514
Debugger called: <panic>
Backtrace (CPU 0), Frame : Return Address
<!-- Insert gibberish here -->

I've tried deleting the caches and booting with -f but neither are working.

If I remove my DSDT then I experience this error
[IOBluetoothHCIController][SearchForTransportEventTimeOutHandler] -- Missing Bluetooth Controller Transport!

Maybe something is wrong with my DSDT?
I tried to extract it with the instructions from this section
Extracting your native/clean DSDT using Linux /sys/firmware/acpi/tables/DSDT
from this link
https://github.com/RehabMan/HP-ProBook-4x30s-DSDT-Patch/wiki/How-to-patch-your-DSDT

I tried to boot with a clean DSDT under mavericks but different threads say booting with a clean one is with a different command: some say DSDT=null, DSDT=no, DSDT=0 so I'm not sure which one is correct. Also, I'm not sure I can boot with chameleon (that's the only way I can boot currently) t'd get a clean DSDT and then patch it and use it with clover.


Are you guys running mavericks? Has anything changed in this guide due to mavericks?
 
Thanks for the response. Now I'm getting

PHP:
<!-- Ususal stuff here, doesn't look as important -->
AppleACPIPlatformExpert::start failed
panic(cpu 0 caller 0xffffff80034649c1): "Unable to find driver for this platform: \"ACPI\".\n"@/SourceCache/xnu/xnu-2050.48.12/iokit/Kernel/IOPlatformExpert.cpp:1514
Debugger called: <panic>
Backtrace (CPU 0), Frame : Return Address
<!-- Insert gibberish here -->

I've tried deleting the caches and booting with -f but neither are working.

If I remove my DSDT then I experience this error
[IOBluetoothHCIController][SearchForTransportEventTimeOutHandler] -- Missing Bluetooth Controller Transport!

Maybe something is wrong with my DSDT?
I tried to extract it with the instructions from this section
Extracting your native/clean DSDT using Linux /sys/firmware/acpi/tables/DSDT
from this link
https://github.com/RehabMan/HP-ProBook-4x30s-DSDT-Patch/wiki/How-to-patch-your-DSDT

I tried to boot with a clean DSDT under mavericks but different threads say booting with a clean one is with a different command: some say DSDT=null, DSDT=no, DSDT=0 so I'm not sure which one is correct. Also, I'm not sure I can boot with chameleon (that's the only way I can boot currently) t'd get a clean DSDT and then patch it and use it with clover.


Are you guys running mavericks? Has anything changed in this guide due to mavericks?
try drop MCFG

PHP:
<dict>
	<key>ACPI</key>
	<dict>
		<key>DropTables</key>
		<array>
			<dict>
				<key>Signature</key>
				<string>MCFG</string>
			</dict>
		</array>
	</dict>
</dict>
 
That edit didn't solve the error "unable to find driver for acpi [...] ioplatformexpert.cpp

here is my config.plist
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
      <key>ACPI</key>
      <dict>
            <key>DSDT</key>
            <dict>
                  <key>Debug</key>
                  <false/>
                  <key>Fixes</key>
                  <dict>
                        <key>AddDTGP_0001</key>
                        <true/>
                        <key>AddMCFG_0008</key>
                        <false/>
                        <key>FakeLPC_0020</key>
                        <false/>
                        <key>FixAirport_4000</key>
                        <true/>
                        <key>FixDarwin_0002</key>
                        <true/>
                        <key>FixDisplay_0100</key>
                        <true/>
                        <key>FixFirewire_0800</key>
                        <true/>
                        <key>FixHDA_8000</key>
                        <true/>
                        <key>FixHPET_0010</key>
                        <true/>
                        <key>FixIDE_0200</key>
                        <false/>
                        <key>FixIPIC_0040</key>
                        <true/>
                        <key>FixLAN_2000</key>
                        <true/>
                        <key>FixSATA_0400</key>
                        <false/>
                        <key>FixSBUS_0080</key>
                        <true/>
                        <key>FixShutdown_0004</key>
                        <true/>
                        <key>FixUSB_1000</key>
                        <true/>
                  </dict>
                  <key>Name</key>
                  <string>DSDT.aml</string>
            </dict>
            <key>DropTables</key>
            <array>
                  <dict>
                        <key>Signature</key>
                        <string>DMAR</string>
                  </dict>
                  <dict>
                        <key>Signature</key>
                        <string>SSDT</string>
                        <key>TableId</key>
                        <string>CpuPm</string>
                  </dict>
                  <dict>
                        <key>Signature</key>
                        <string>MCFG</string>
                  </dict>
            </array>
            <key>HaltEnabler</key>
            <false/>
            <key>SSDT</key>
            <dict>
                  <key>Generate</key>
                  <dict>
                        <key>CStates</key>
                        <true/>
                        <key>PStates</key>
                        <true/>
                  </dict>
                  <key>MinMultiplier</key>
                  <integer>8</integer>
                  <key>PLimitDict</key>
                  <integer>0</integer>
                  <key>UnderVoltStep</key>
                  <integer>0</integer>
            </dict>
      </dict>
      <key>Boot</key>
      <dict>
            <key>Arguments</key>
            <string>npci=0x2000</string>
            <key>DefaultVolume</key>
            <string>MacHDD</string>
            <key>Fast</key>
            <false/>
            <key>Legacy</key>
            <string>PBR</string>
            <key>Log</key>
            <false/>
            <key>Timeout</key>
            <integer>5</integer>
            <key>XMPDetection</key>
            <string>-1</string>
      </dict>
      <key>Devices</key>
      <dict>
            <key>Audio</key>
            <dict>
                  <key>Inject</key>
                  <string>No</string>
            </dict>
            <key>FakeID</key>
            <dict>
                  <key>ATI</key>
                  <string>0x0</string>
                  <key>IntelGFX</key>
                  <string>0x0</string>
                  <key>LAN</key>
                  <string>0x0</string>
                  <key>NVidia</key>
                  <string>0x0</string>
                  <key>SATA</key>
                  <string>0x0</string>
                  <key>WIFI</key>
                  <string>0x0</string>
                  <key>XHCI</key>
                  <string>0x0</string>
            </dict>
            <key>Inject</key>
            <false/>
            <key>USB</key>
            <dict>
                  <key>AddClockID</key>
                  <true/>
                  <key>FixOwnership</key>
                  <true/>
                  <key>Inject</key>
                  <true/>
            </dict>
      </dict>
      <key>DisableDrivers</key>
      <array>
            <string>Nothing</string>
      </array>
      <key>GUI</key>
      <dict>
            <key>Hide</key>
            <array>
                  <string>Windows</string>
                  <string>\EFI\BOOT\BOOTX64.EFI</string>
            </array>
            <key>Language</key>
            <string>en:0</string>
            <key>Mouse</key>
            <dict>
                  <key>Enabled</key>
                  <false/>
                  <key>Speed</key>
                  <integer>0</integer>
            </dict>
            <key>Scan</key>
            <dict>
                  <key>Entries</key>
                  <true/>
                  <key>Legacy</key>
                  <true/>
                  <key>Tool</key>
                  <true/>
            </dict>
            <key>TextOnly</key>
            <false/>
            <key>Theme</key>
            <string>metal</string>
      </dict>
      <key>Graphics</key>
      <dict>
            <key>Inject</key>
            <dict>
                  <key>ATI</key>
                  <false/>
                  <key>Intel</key>
                  <true/>
                  <key>NVidia</key>
                  <false/>
            </dict>
            <key>PatchVBios</key>
            <false/>
      </dict>
      <key>KernelAndKextPatches</key>
      <dict>
            <key>AppleRTC</key>
            <true/>
            <key>AsusAICPUPM</key>
            <true/>
            <key>Debug</key>
            <false/>
            <key>KernelCpu</key>
            <false/>
            <key>KextsToPatch</key>
            <array>
                  <dict>
                        <key>Comment</key>
                        <string>External icons patch</string>
                        <key>Find</key>
                        <data>
                        RXh0ZXJuYWw=
                        </data>
                        <key>Name</key>
                        <string>AppleAHCIPort</string>
                        <key>Replace</key>
                        <data>
                        SW50ZXJuYWw=
                        </data>
                  </dict>
            </array>
      </dict>
      <key>RtVariables</key>
      <dict>
            <key>LogEveryBoot</key>
            <string>10</string>
            <key>LogLineCount</key>
            <integer>3000</integer>
            <key>MountEFI</key>
            <true/>
      </dict>
      <key>SystemParameters</key>
      <dict>
            <key>InjectSystemID</key>
            <true/>
      </dict>
</dict>
</plist>

I had one that was more customized but that's the one that installing clover 2236 created
 
That edit didn't solve the error "unable to find driver for acpi [...] ioplatformexpert.cpp

here is my config.plist
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
      <key>ACPI</key>
      <dict>
            <key>DSDT</key>
            <dict>
                  <key>Debug</key>
                  <false/>
                  <key>Fixes</key>
                  <dict>
                        <key>AddDTGP_0001</key>
                        <true/>
                        <key>AddMCFG_0008</key>
                        <false/>
                        <key>FakeLPC_0020</key>
                        <false/>
                        <key>FixAirport_4000</key>
                        <true/>
                        <key>FixDarwin_0002</key>
                        <true/>
                        <key>FixDisplay_0100</key>
                        <true/>
                        <key>FixFirewire_0800</key>
                        <true/>
                        <key>FixHDA_8000</key>
                        <true/>
                        <key>FixHPET_0010</key>
                        <true/>
                        <key>FixIDE_0200</key>
                        <false/>
                        <key>FixIPIC_0040</key>
                        <true/>
                        <key>FixLAN_2000</key>
                        <true/>
                        <key>FixSATA_0400</key>
                        <false/>
                        <key>FixSBUS_0080</key>
                        <true/>
                        <key>FixShutdown_0004</key>
                        <true/>
                        <key>FixUSB_1000</key>
                        <true/>
                  </dict>
                  <key>Name</key>
                  <string>DSDT.aml</string>
            </dict>
            <key>DropTables</key>
            <array>
                  <dict>
                        <key>Signature</key>
                        <string>DMAR</string>
                  </dict>
                  <dict>
                        <key>Signature</key>
                        <string>SSDT</string>
                        <key>TableId</key>
                        <string>CpuPm</string>
                  </dict>
                  <dict>
                        <key>Signature</key>
                        <string>MCFG</string>
                  </dict>
            </array>
            <key>HaltEnabler</key>
            <false/>
            <key>SSDT</key>
            <dict>
                  <key>Generate</key>
                  <dict>
                        <key>CStates</key>
                        <true/>
                        <key>PStates</key>
                        <true/>
                  </dict>
                  <key>MinMultiplier</key>
                  <integer>8</integer>
                  <key>PLimitDict</key>
                  <integer>0</integer>
                  <key>UnderVoltStep</key>
                  <integer>0</integer>
            </dict>
      </dict>
      <key>Boot</key>
      <dict>
            <key>Arguments</key>
            <string>npci=0x2000</string>
            <key>DefaultVolume</key>
            <string>MacHDD</string>
            <key>Fast</key>
            <false/>
            <key>Legacy</key>
            <string>PBR</string>
            <key>Log</key>
            <false/>
            <key>Timeout</key>
            <integer>5</integer>
            <key>XMPDetection</key>
            <string>-1</string>
      </dict>
      <key>Devices</key>
      <dict>
            <key>Audio</key>
            <dict>
                  <key>Inject</key>
                  <string>No</string>
            </dict>
            <key>FakeID</key>
            <dict>
                  <key>ATI</key>
                  <string>0x0</string>
                  <key>IntelGFX</key>
                  <string>0x0</string>
                  <key>LAN</key>
                  <string>0x0</string>
                  <key>NVidia</key>
                  <string>0x0</string>
                  <key>SATA</key>
                  <string>0x0</string>
                  <key>WIFI</key>
                  <string>0x0</string>
                  <key>XHCI</key>
                  <string>0x0</string>
            </dict>
            <key>Inject</key>
            <false/>
            <key>USB</key>
            <dict>
                  <key>AddClockID</key>
                  <true/>
                  <key>FixOwnership</key>
                  <true/>
                  <key>Inject</key>
                  <true/>
            </dict>
      </dict>
      <key>DisableDrivers</key>
      <array>
            <string>Nothing</string>
      </array>
      <key>GUI</key>
      <dict>
            <key>Hide</key>
            <array>
                  <string>Windows</string>
                  <string>\EFI\BOOT\BOOTX64.EFI</string>
            </array>
            <key>Language</key>
            <string>en:0</string>
            <key>Mouse</key>
            <dict>
                  <key>Enabled</key>
                  <false/>
                  <key>Speed</key>
                  <integer>0</integer>
            </dict>
            <key>Scan</key>
            <dict>
                  <key>Entries</key>
                  <true/>
                  <key>Legacy</key>
                  <true/>
                  <key>Tool</key>
                  <true/>
            </dict>
            <key>TextOnly</key>
            <false/>
            <key>Theme</key>
            <string>metal</string>
      </dict>
      <key>Graphics</key>
      <dict>
            <key>Inject</key>
            <dict>
                  <key>ATI</key>
                  <false/>
                  <key>Intel</key>
                  <true/>
                  <key>NVidia</key>
                  <false/>
            </dict>
            <key>PatchVBios</key>
            <false/>
      </dict>
      <key>KernelAndKextPatches</key>
      <dict>
            <key>AppleRTC</key>
            <true/>
            <key>AsusAICPUPM</key>
            <true/>
            <key>Debug</key>
            <false/>
            <key>KernelCpu</key>
            <false/>
            <key>KextsToPatch</key>
            <array>
                  <dict>
                        <key>Comment</key>
                        <string>External icons patch</string>
                        <key>Find</key>
                        <data>
                        RXh0ZXJuYWw=
                        </data>
                        <key>Name</key>
                        <string>AppleAHCIPort</string>
                        <key>Replace</key>
                        <data>
                        SW50ZXJuYWw=
                        </data>
                  </dict>
            </array>
      </dict>
      <key>RtVariables</key>
      <dict>
            <key>LogEveryBoot</key>
            <string>10</string>
            <key>LogLineCount</key>
            <integer>3000</integer>
            <key>MountEFI</key>
            <true/>
      </dict>
      <key>SystemParameters</key>
      <dict>
            <key>InjectSystemID</key>
            <true/>
      </dict>
</dict>
</plist>

I had one that was more customized but that's the one that installing clover 2236 created

Add correct SMBIOS to your config.plist
 
Status
Not open for further replies.
Back
Top