Jump to content

Clover Problems and Solutions


ErmaC
3,206 posts in this topic

Recommended Posts

@Slice

 

i did find issue line exactly.

first

this is red line that cause to can't get Clover GUI in r23704

 

 

if (PcdGet32 (PcdMaximumAsciiStringLength) != 0) {

ASSERT (Length <= PcdGet32 (PcdMaximumAsciiStringLength));

if (Length > PcdGet32 (PcdMaximumAsciiStringLength)) {

Length = PcdGet32 (PcdMaximumAsciiStringLength);

}

}

 

before line in r23701. i can get Clover GUI if remove red line above.

 

 

 

if (PcdGet32 (PcdMaximumAsciiStringLength) != 0) {

ASSERT (Length <= PcdGet32 (PcdMaximumAsciiStringLength));

}

two.

aptiofix

++++++++++++++++++++

 

this line cause issue. we can't boot and can't show boot log(-v). can't boot and force reboot like

//

// ASSERT both strings are less long than PcdMaximumAsciiStringLength

//

ASSERT (AsciiStrSize (String) != 0);

ASSERT (AsciiStrSize (SearchString) != 0);

if (!AsciiStrSize (String) || !AsciiStrSize (SearchString)) {

return NULL;

}

 

before line in r23701. we can boot. but we cant use KextToPatch. just can boot.

//

// ASSERT both strings are less long than PcdMaximumAsciiStringLength

//

ASSERT (AsciiStrSize (String) != 0);

ASSERT (AsciiStrSize (SearchString) != 0);

 

three.

to use KextToPatch

r23704. not work KextToPatch

UINT64

EFIAPI

StrHexToUint64 (

IN CONST CHAR16 *String

)

{

UINT64 Result = 0;

RETURN_STATUS Status;

 

Status = StrHexToUint64S (String, (CHAR16 **) NULL, &Result);

if (Status != RETURN_SUCCESS) {

return 0;

}

return Result;

}

work code(r23701)

UINT64

EFIAPI

StrHexToUint64 (

IN CONST CHAR16 *String

)

{

UINT64 Result;

 

//

// ASSERT String is less long than PcdMaximumUnicodeStringLength.

// Length tests are performed inside StrLen().

//

ASSERT (StrSize (String) != 0);

 

//

// Ignore the pad spaces (space or tab)

//

while ((*String == L' ') || (*String == L'\t')) {

String++;

}

 

//

// Ignore leading Zeros after the spaces

//

while (*String == L'0') {

String++;

}

 

if (InternalCharToUpper (*String) == L'X') {

ASSERT (*(String - 1) == L'0');

if (*(String - 1) != L'0') {

return 0;

}

//

// Skip the 'X'

//

String++;

}

 

Result = 0;

 

while (InternalIsHexaDecimalDigitCharacter (*String)) {

//

// If the Hex Number represented by String overflows according

// to the range defined by UINTN, then ASSERT().

//

ASSERT (Result <= RShiftU64 (((UINT64) ~0) - InternalHexCharToUintn (*String) , 4));

 

Result = LShiftU64 (Result, 4);

Result = Result + InternalHexCharToUintn (*String);

String++;

}

 

return Result;

}

 

 

according to this research, maybe need to patch clover to work boot from r23704

 

thank you

solved.zip

Link to comment
Share on other sites

Not agree.

ASSERT() macro in RELEASE compilation is just empty. So there will be no check on zero pointers or too long screen.

New EDK2 propose a way  to do codes more secure.

  • Like 1
Link to comment
Share on other sites

Not agree.

ASSERT() macro in RELEASE compilation is just empty. So there will be no check on zero pointers or too long screen.

New EDK2 propose a way to do codes more secure.

Right. I just report you according to request before.

 

I found this for 2days.

 

I dont know that exactly cause problem.

 

Thank you. Hope fix soon. Have a nice day

 

나의 LG-F410S 의 Tapatalk에서 보냄

Who's up for some testing?

 

Clover r3987

edk2 r23830

String.c from Sherlocks

 

Just tested it and it works. It seems String.c hasn't been changed a bit since r23702....

 

test please. 

r3987 test2.zip

Link to comment
Share on other sites

@Slice

 

clean edk2 and only use micky script and build clover. i don't touch any code.

tested r3989

 

can boot but i can't get sound(kexttopatch is not working). i said before

post-980913-0-15630000-1485487281_thumb.png

 

KextToPatch

5:436  0:000   - [01]: com.apple.driver.AppleHDA (AppleHDA for Conexant CX20753/4) :: BinPatch :: [OS: 10.12.4 | MatchOS: All | MatchBuild: All] ==> allowed

 

thank you.

  • Like 1
Link to comment
Share on other sites

Check, please, 3990. EDK2 23831 + patches.

Can you give me r3990 file?

 

In korea, Now Korea is New Year's Day.

 

I dont have laptop with xcode for testing. Because im in parents's home. Now i have dell venues. It can test.

 

Thank you. Add. Hope rc script update.

 

 

나의 LG-F410S 의 Tapatalk에서 보냄

Link to comment
Share on other sites

what patches?

 

BTW i compiled r3990 with EDK2 2381 seems is ok normal boot

 

0:100  0:100  MemLog inited, TSC freq: 3292524119
0:100  0:000  
0:100  0:000  Now is 27.1.2017,  7:57:24 (GMT)
0:100  0:000  Starting Clover revision: 3990 on American Megatrends EFI
0:100  0:000  Build with: [Args: -mc --no-usb -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -t XCODE5 | -D DISABLE_USB_SUPPORT -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -a X64 -b RELEASE -t XCODE5 -n 5 | OS: 10.12.3 | XCODE: 8.0]

Filtering KernelPatches:
11:667  0:000   - [00]: NoLabel :: [OS: 10.12.3 | MatchOS: 10.12 | MatchBuild: All] ==> allowed

 

post-1113740-0-78026200-1485504186_thumb.png

Link to comment
Share on other sites

Can you give me r3990 file?

 

In korea, Now Korea is New Year's Day.

 

I dont have laptop with xcode for testing. Because im in parents's home. Now i have dell venues. It can test.

 

Thank you. Add. Hope rc script update.

 

 

나의 LG-F410S 의 Tapatalk에서 보냄

For example this compilation https://yadi.sk/d/R-2YCU_X3BBBtk

My compilation will be at evening.

  • Like 1
Link to comment
Share on other sites

For example this compilation https://yadi.sk/d/R-2YCU_X3BBBtk

My compilation will be at evening.

 

Seems to be work. but not sure. need test more by other users.

 

thank you for latest build.

what patches?

 

BTW i compiled r3990 with EDK2 2381 seems is ok normal boot

 

0:100  0:100  MemLog inited, TSC freq: 3292524119

0:100  0:000  

0:100  0:000  Now is 27.1.2017,  7:57:24 (GMT)

0:100  0:000  Starting Clover revision: 3990 on American Megatrends EFI

0:100  0:000  Build with: [Args: -mc --no-usb -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -t XCODE5 | -D DISABLE_USB_SUPPORT -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -a X64 -b RELEASE -t XCODE5 -n 5 | OS: 10.12.3 | XCODE: 8.0]

Filtering KernelPatches:

11:667  0:000   - [00]: NoLabel :: [OS: 10.12.3 | MatchOS: 10.12 | MatchBuild: All] ==> allowed

 

attachicon.gifScreen Shot 2017-01-27 at 2.55.47 PM.png

 

do your dekstop work kexttopatch? ex. sound or other patches in r3990 build

Link to comment
Share on other sites

Long delay on

"Patching kernel for injected kexts..."


Seems to be work. but not sure. need test more by other users.

 

thank you for latest build.


 

do your dekstop work kexttopatch? ex. sound or other patches in r3990 build

Yes, patch XHCI to increase port numbers from 15 to 25. I see the result.

I don't use any sound patches. VoodooHDA works as is.

  • Like 1
Link to comment
Share on other sites

Check, please, 3990. EDK2 23831 + patches.

 

Tested it several hours ago. Works like it should on my laptop. Haven't tested it on desktop yet (at work now). As for the audio, can't really say if there's a problem as I'm using AppleALC.kext for that (it doesn't require any audio ID patches), injected from EFI/Clover/kexts.

 

 

 

0:100  0:100  MemLog inited, TSC freq: 2594108703

0:100  0:000  

0:100  0:000  Now is 27.1.2017,  9:42:26 (GMT)

0:100  0:000  Starting Clover revision: 3990 on HPQ EFI

0:100  0:000  Build with: [Args: -mc --no-usb -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -t XCODE5 | -D DISABLE_USB_SUPPORT -D NO_GRUB_DRIVERS_EMBEDDED -D CHECK_FLAGS -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -a X64 -b RELEASE -t XCODE5 -n 5 | OS: 10.11.6 | XCODE: 8.2.1]

0:100  0:000  SelfDevicePath=PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)\HD(1,GPT,BEE18C26-2C6D-4928-AB4C-A1A558B87C77,0x800,0x64000) @A4BA0B98

0:100  0:000  SelfDirPath = \EFI\BOOT

0:100  0:000  === [ Get Smbios ] ========================================

0:100  0:000  Type 16 Index = 0

0:100  0:000  Total Memory Slots Count = 2

0:100  0:000  Type 17 Index = 0

0:100  0:000  SmbiosTable.Type17->Speed = 1333MHz

0:100  0:000  SmbiosTable.Type17->Size = 4096MB

0:100  0:000  SmbiosTable.Type17->Bank/Device = BANK 0 Bottom-Slot 1(top)

0:100  0:000  SmbiosTable.Type17->Vendor = Kingston

0:100  0:000  SmbiosTable.Type17->SerialNumber = 8812BD62

0:100  0:000  SmbiosTable.Type17->PartNumber = 9905428-045.A00LF

0:100  0:000  Type 17 Index = 1

0:100  0:000  SmbiosTable.Type17->Speed = 1333MHz

0:100  0:000  SmbiosTable.Type17->Size = 4096MB

0:100  0:000  SmbiosTable.Type17->Bank/Device = BANK 2 Bottom-Slot 2(under)

0:100  0:000  SmbiosTable.Type17->Vendor = Kingston

0:100  0:000  SmbiosTable.Type17->SerialNumber = 87128163

0:100  0:000  SmbiosTable.Type17->PartNumber = 9905428-045.A00LF

0:100  0:000  Boot status=0

0:100  0:000  Running on: 'HP ProBook 4340s' with board '17F0'

0:100  0:000  === [ GetCPUProperties ] ==================================

0:100  0:000  CPU Vendor = 756E6547 Model=306A9

0:100  0:000   The CPU supported SSE4.1

0:100  0:000  got cores from CPUID_1 = 0

0:100  0:000  The CPU supported turbo

0:100  0:000  BrandString = Intel® Core i5-3230M CPU @ 2.60GHz

0:100  0:000  MSR 0xE2 before patch 1E008404

0:100  0:000  MSR 0xE2 is locked, PM patches will be turned on

0:100  0:000  MSR 0xE4              00020414

0:100  0:000  MSR 0xCE              00080C10_E0011A00

0:100  0:000  non-usable FLEX_RATIO = 110000

0:100  0:000  corrected FLEX_RATIO = 100000

0:100  0:000  MSR 0x1B0             00000000

0:100  0:000  FSBFrequency=100MHz DMIvalue=100000kHz

0:100  0:000  Corrected FSBFrequency=100MHz

0:100  0:000  Vendor/Model/Stepping: 0x756E6547/0x3A/0x9

0:100  0:000  Family/ExtFamily: 0x6/0x0

0:100  0:000  MaxDiv/MinDiv: 26.0/12

0:100  0:000  Turbo: 30/30/30/32

0:100  0:000  Features: 0xBFEBFBFF

0:100  0:000  Threads: 4

0:100  0:000  Cores: 2

0:100  0:000  FSB: 100 MHz

0:100  0:000  CPU: 2600 MHz

0:100  0:000  TSC: 2600 MHz

0:100  0:000  PIS: 400 MHz

0:100  0:000  === [ GetDevices ] ========================================

0:100  0:000  PCI (00|00:00.00) : 8086 0154 class=060000

0:100  0:000  PCI (00|00:02.00) : 8086 0166 class=030000

0:100  0:000   - GFX: Model=Intel HD Graphics 4000 (Intel)

0:100  0:000  PCI (00|00:14.00) : 8086 1E31 class=0C0330

0:100  0:000  PCI (00|00:16.00) : 8086 1E3A class=078000

0:100  0:000  PCI (00|00:16.01) : FFFF FFFF class=FFFFFF

0:100  0:000  PCI (00|00:1A.00) : 8086 1E2D class=0C0320

0:100  0:000  PCI (00|00:1B.00) : 8086 1E20 class=040300

0:100  0:000  PCI (00|00:1C.00) : 8086 1E10 class=060400

0:100  0:000  PCI (00|00:1C.02) : 8086 1E14 class=060400

0:100  0:000  PCI (00|02:00.00) : 197B 2392 class=088000

0:100  0:000  PCI (00|02:00.02) : 197B 2391 class=080501

0:100  0:000  PCI (00|02:00.03) : 197B 2393 class=088000

0:100  0:000  PCI (00|02:00.04) : FFFF FFFF class=FFFFFF

0:100  0:000  PCI (00|00:1C.03) : 8086 1E16 class=060400

0:100  0:000  PCI (00|03:00.00) : 168C 002A class=028000

0:100  0:000   - WIFI: Vendor=Atheros

0:100  0:000  PCI (00|00:1C.05) : 8086 1E1A class=060400

0:100  0:000  PCI (00|04:00.00) : 10EC 8168 class=020000

0:100  0:000   - LAN: 0 Vendor=Realtek

0:100  0:000  PCI (00|00:1D.00) : 8086 1E26 class=0C0320

0:100  0:000  PCI (00|00:1F.00) : 8086 1E59 class=060100

0:100  0:000  PCI (00|00:1F.02) : 8086 1E03 class=010601

0:100  0:000  PCI (00|00:1F.06) : FFFF FFFF class=FFFFFF

0:100  0:000  === [ GetDefaultSettings ] ================================

0:100  0:000  Clover load options size = 0 bytes

0:109  0:008  EFI\CLOVER\config.plist loaded: Success

0:109  0:000  === [ GetListOfThemes ] ===================================

0:111  0:002  - [00]: embedded

0:112  0:001  - [00]: random

0:113  0:001  - [00]: Universe

0:114  0:001  === [ Found config plists ] ===============================

0:114  0:000  - config.plist

0:114  0:000  === [ GetEarlyUserSettings ] ==============================

0:114  0:000  timeout set to 3

0:114  0:000  Custom boot CUSTOM_BOOT_DISABLED (0x0)

0:114  0:000  KextsToPatch: 22 requested

0:114  0:000   - [00]: com.apple.driver.usb.AppleUSBXHCIPCI (change 15 port limit to 26 in XHCI kext (100-series)) :: MatchOS: 10.11.x :: BinPatch :: data len: 7

0:114  0:000   - patch disabled at config

0:114  0:000   - [01]: com.apple.driver.usb.AppleUSBXHCIPCI (change 15 port limit to 26 in XHCI kext (100-series)) :: MatchOS: 10.12.x :: BinPatch :: data len: 7

0:114  0:000   - patch disabled at config

0:114  0:000   - [02]: com.apple.driver.AppleHDA (AppleHDA .xml.zl to .zml.zl) :: MatchOS: 10.10.x,10.11.x,10.12.x :: BinPatch :: data len: 7

0:114  0:000   - patch disabled at config

0:114  0:000   - [03]: com.apple.iokit.IOAHCIBlockStorage (Enable TRIM for non-Apple SSDs) :: BinPatch :: data len: 11

0:114  0:000   - [04]: com.apple.iokit.IOGraphicsFamily (Boot graphics glitch, 10.10.x/10.11.x (credit lisai9093, cecekpawon)) :: MatchOS: 10.10.x,10.11.x :: BinPatch :: data len: 5

0:114  0:000   - [05]: com.apple.iokit.IOGraphicsFamily (Boot graphics glitch, 10.12.dp1 (credit denskop)) :: MatchOS: 10.12.x :: BinPatch :: data len: 5

0:114  0:000   - [06]: com.apple.driver.AirPort.Brcm4360 (AirPortBrcm4360 whitelist patch (board-id), 10.12.dp1, credit RehabMan) :: MatchOS: 10.12.x :: BinPatch :: data len: 8

0:114  0:000   - [07]: com.apple.driver.AirPort.Brcm4360 (AirPortBrcm4360 whitelist patch (board-id), 10.11.x, credit RehabMan) :: MatchOS: 10.11.x :: BinPatch :: data len: 8

0:114  0:000   - [08]: com.apple.driver.AirPort.Brcm4360 (AirPortBrcm4360 whitelist patch (board-id), 10.10.5, credit RehabMan) :: MatchOS: 10.10.5 :: BinPatch :: data len: 12

0:114  0:000   - [09]: com.apple.driver.AirPort.Brcm4360 (10.9.5 5Ghz US FCC, svko) :: MatchOS: 10.9.5 :: BinPatch :: data len: 9

0:114  0:000   - [10]: com.apple.driver.AirPort.Brcm4360 (10.10.2+ 5Ghz US FCC, the-darkvoid) :: MatchOS: 10.10.x,10.11.x :: BinPatch :: data len: 7

0:114  0:000   - [11]: com.apple.driver.AirPort.Brcm4360 (AirPortBrcm4360 - fcvo, 10.12.x (credit the-darkvoid)) :: MatchOS: 10.12.x :: BinPatch :: data len: 8

0:114  0:000   - [12]: com.apple.iokit.IOBluetoothFamily (10.10.2+ BT4LE-Handoff-Hotspot, Dokterdok) :: MatchOS: 10.10.x :: BinPatch :: data len: 8

0:114  0:000   - [13]: com.apple.iokit.IOBluetoothFamily (10.11.dp1+ BT4LE-Handoff-Hotspot, credit RehabMan based on Dokterdok original) :: MatchOS: 10.11.x,10.12.x :: BinPatch :: data len: 8

0:114  0:000   - [14]: com.apple.driver.AppleIntelSNBGraphicsFB (HDMI-audio HD3000, 0x00010000, port 0406) :: BinPatch :: data len: 12

0:114  0:000   - [15]: com.apple.driver.AppleIntelFramebufferCapri (HDMI-video, 64MB BIOS, HD4000 0x01660004 #1 of 2) :: BinPatch :: data len: 12

0:115  0:000   - [16]: com.apple.driver.AppleIntelFramebufferCapri (HDMI-video, 64MB BIOS, HD4000 0x01660004 #2 of 2 (order dependency, port 0406 patch)) :: BinPatch :: data len: 48

0:115  0:000   - [17]: com.apple.driver.AppleIntelFramebufferCapri (HDMI-audio HD4000 0x01660003/0004, port 0406 (order dependency HDMI-video 0x01660004 above)) :: BinPatch :: data len: 12

0:115  0:000   - [18]: com.apple.driver.AppleHDA (IDT 76d9 #1 of 4) :: BinPatch :: data len: 5

0:115  0:000   - patch disabled at config

0:115  0:000   - [19]: com.apple.driver.AppleHDA (IDT 76d9 #2 of 4) :: BinPatch :: data len: 5

0:115  0:000   - patch disabled at config

0:115  0:000   - [20]: com.apple.driver.AppleHDA (IDT 76d9 #3 of 4) :: BinPatch :: data len: 5

0:115  0:000   - patch disabled at config

0:115  0:000   - [21]: com.apple.driver.AppleHDA (IDT 76d9 #4 of 4) :: BinPatch :: data len: 5

0:115  0:000   - patch disabled at config

0:115  0:000  Default theme: Universe

0:115  0:000  ** Warning: unknown custom entry Type 'Other'

0:115  0:000  === [ LoadDrivers ] =======================================

0:115  0:000  Loading AppleImageCodec-64.efi  status=Success

0:116  0:001  Loading AppleKeyAggregator-64.efi  status=Success

0:116  0:000  Loading AppleUITheme-64.efi  status=Success

0:116  0:000  Loading DataHubDxe-64.efi  status=Success

0:120  0:004  Loading EmuVariableUefi-64.efi  status=Success

0:120  0:000  EmuVariableUefi Initialize: VariableCommonInitialize = Success, orig services stored, install gEmuVariableControlProtocolGuid = Success

0:120  0:000  Loading FirmwareVolume-64.efi  status=Success

0:120  0:000  Loading FSInject-64.efi  status=Success

0:120  0:000  Loading HFSPlus.efi  status=Success

0:122  0:001   - driver needs connecting

0:122  0:000  Loading HPFanReset.efi  status=Success

0:213  0:091  HPFanReset: successfully set fan control to BIOS mode.

0:213  0:000  Loading OsxAptioFixDrv-64.efi  status=Success

0:215  0:002  Loading OsxFatBinaryDrv-64.efi  status=Success

0:215  0:000  Loading SMCHelper-64.efi  status=Success

0:216  0:000  1 drivers needs connecting ...

0:216  0:000  PlatformDriverOverrideProtocol not found. Installing ... Success

0:216  0:000  HFS+ driver loaded

0:216  0:000  Searching for invalid DiskIo BY_DRIVER connects:

0:216  0:000   - Handle A4BA0918 with DiskIo, is Partition, no Fs, BY_DRIVER Agent: A4CEF898, Disconnect: Success

0:216  0:000   - Handle A4BA0718 with DiskIo, is Partition, no Fs, BY_DRIVER Agent: A4CEF898, Disconnect: Success

0:216  0:000   - Handle A4BA0518 with DiskIo, is Partition, no Fs, BY_DRIVER Agent: A4CEF898, Disconnect: Success

0:216  0:000   - Handle A4BA0118 with DiskIo, is Partition, no Fs, BY_DRIVER Agent: A4CEF898, Disconnect: Success

0:216  0:000   - Handle A4B98F18 with DiskIo, is Partition, no Fs, BY_DRIVER Agent: A4CEF898, Disconnect: Success

0:383  0:166  EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success

0:383  0:000  === [ InitScreen ] ========================================

0:383  0:000  SetScreenResolution: 1024x768 - setting Mode 3

0:423  0:040  Video mode change to mode #3: Success

0:423  0:000  Console modes reported: 5, available modes:

0:423  0:000   - [01]: 80x25

0:423  0:000   - [03]: 120x36

0:423  0:000   - [04]: 128x40

0:423  0:000   - [05]: 170x40 (current mode)

0:423  0:000  SetScreenResolution: 1024x768 - already set

0:436  0:012  reinit: self device path=PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)\HD(1,GPT,BEE18C26-2C6D-4928-AB4C-A1A558B87C77,0x800,0x64000)

0:436  0:000  === [ GetMacAddress ] =====================================

0:436  0:000  === [ ScanSPD ] ===========================================

0:436  0:000  === [ GetAcpiTablesList ] =================================

0:436  0:000  Get Acpi Tables List from RSDT:

0:436  0:000   - [00]: FACP  17F0     len=268

0:436  0:000   - [01]: HPET  17F0     len=56

0:436  0:000   - [02]: APIC  17F0     len=188

0:436  0:000   - [03]: MCFG  17F0     len=60

0:436  0:000   - [04]: ASF!  17F0     len=165

0:436  0:000   - [05]: SSDT  SataAhci len=714

0:436  0:000   - [06]: SSDT  PtidDevc len=1162

0:436  0:000   - [07]: FPDT  17F0     len=68

0:436  0:000   - [08]: BGRT  17F0     len=56

0:436  0:000   - [09]: SSDT  Cpu0Ist len=2486

0:436  0:000   - [10]: SSDT  CpuPm len=2733

0:436  0:000  Calibrated TSC frequency =2594108703 =2594MHz

0:436  0:000  === [ GetUserSettings ] ===================================

0:436  0:000  USB FixOwnership: no

0:436  0:000  Dropping 2 tables:

0:436  0:000   - [00]: Drop table  signature="DMAR" (52414D44)

0:436  0:000           - set table: 52414D44,                0 to drop: no

0:436  0:000   - [01]: Drop table  signature="SSDT" (54445353) table-id="PtidDevc" (6376654464697450)

0:436  0:000           - set table: 54445353, 6376654464697450 to drop: yes

0:436  0:000   - final DSDT Fix mask=80060050

0:436  0:000  PatchesDSDT: 27 requested

0:436  0:000   - [00]: (change _DSM to XDSM) lenToFind: 4, lenToReplace: 4

0:436  0:000   - [01]: (change _OSI to XOSI) lenToFind: 4, lenToReplace: 4

0:436  0:000   - [02]: (change EHC1 to EH01) lenToFind: 4, lenToReplace: 4

0:436  0:000   - [03]: (change EHC2 to EH02) lenToFind: 4, lenToReplace: 4

0:436  0:000   - [04]: (change GFX0 to IGPU) lenToFind: 4, lenToReplace: 4

0:436  0:000   - [05]: (Change Device(HECI) _ADR=0x00160000 to _ADR=0) lenToFind: 14, lenToReplace: 14

0:436  0:000    patch disabled at config

0:436  0:000   - [06]: (change HDAS to HDEF) lenToFind: 4, lenToReplace: 4

0:436  0:000   - [07]: (change B0D3 to HDAU) lenToFind: 4, lenToReplace: 4

0:436  0:000   - [08]: (change SAT0 to SATA) lenToFind: 4, lenToReplace: 4

0:436  0:000   - [09]: (change Method(UPRW,2,S) to XPRW) lenToFind: 7, lenToReplace: 7

0:436  0:000   - [10]: (change Method(GPRW,2,N) to XPRW) lenToFind: 5, lenToReplace: 5

0:436  0:000   - [11]: (change LANC Method(_PRW,0,Serialized) to Method(XPRW,0,..)) lenToFind: 11, lenToReplace: 11

0:436  0:000   - [12]: (change _PTS to ZPTS) lenToFind: 5, lenToReplace: 5

0:436  0:000   - [13]: (change _WAK to ZWAK) lenToFind: 5, lenToReplace: 5

0:436  0:000   - [14]: (change _WAK to ZWAK (G3)) lenToFind: 5, lenToReplace: 5

0:436  0:000   - [15]: (change Method(BTIF,1,Serialized) to BTI0) lenToFind: 7, lenToReplace: 7

0:436  0:000   - [16]: (change Method(BTIF,1,Serialized) to BTI0 (G3)) lenToFind: 8, lenToReplace: 8

0:436  0:000   - [17]: (change Method(BTST,2,Serialized) to BTS1) lenToFind: 7, lenToReplace: 7

0:436  0:000   - [18]: (change Method(BTST,2,Serialized) to BTS1 (G3)) lenToFind: 8, lenToReplace: 8

0:436  0:000   - [19]: (change Method(SBTC,3,NotSerialized) to SBT2) lenToFind: 7, lenToReplace: 7

0:436  0:000   - [20]: (change Method(GBTI,1,NotSerialized) to GBT3) lenToFind: 7, lenToReplace: 7

0:436  0:000   - [21]: (change Method(GBTC,0,NotSerialized) to GBT4) lenToFind: 7, lenToReplace: 7

0:436  0:000   - [22]: (change Name(NBTI,..) to NBT5) lenToFind: 5, lenToReplace: 5

0:436  0:000   - [23]: (change Notify(\_SB.BAT0,...) to Notify(_SB.BATC,...)) lenToFind: 11, lenToReplace: 11

0:436  0:000   - [24]: (change Notify(\_SB.BAT1,...) to Notify(_SB.BATC,...)) lenToFind: 11, lenToReplace: 11

0:436  0:000   - [25]: (change Notify(BAT0,...) to Notify(BATC,...)) lenToFind: 5, lenToReplace: 5

0:436  0:000   - [26]: (change Notify(BAT1,...) to Notify(BATC,...)) lenToFind: 5, lenToReplace: 5

0:436  0:000  ChassisType: 0x8

0:439  0:002  === [ ScanVolumes ] =======================================

0:439  0:000  Found 10 volumes with blockIO

0:439  0:000  - [00]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)

0:440  0:001  - [01]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x1,0x0,0x0)

0:440  0:000          Found optical drive

0:440  0:000  - [02]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)\HD(1,GPT,BEE18C26-2C6D-4928-AB4C-A1A558B87C77,0x800,0x64000)

0:441  0:001          Result of bootcode detection: bootable unknown (legacy)

0:441  0:000          This is SelfVolume !!

0:441  0:000  - [03]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)\HD(2,GPT,FDD925B5-CF21-4E0D-9079-B1B3A49C1A5C,0x64800,0xC70A0E0)

0:442  0:001  - [04]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)\HD(3,GPT,2C89AAF5-0456-481B-ADBB-9423BF51E796,0xC76E8E0,0x135F20)

0:443  0:001  - [05]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)\HD(4,GPT,2BAA5AE3-2211-46CB-9A54-8AB5DCE1AF6E,0xC8A4800,0xAFC8000)

0:445  0:001          Result of bootcode detection: bootable unknown (legacy)

0:445  0:000  - [06]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)\HD(5,GPT,AF0E5F9C-9FA3-4CA4-8E9A-4E87FCFE84EA,0x1786C800,0x40000)

0:446  0:001          Result of bootcode detection: bootable unknown (legacy)

0:446  0:000  - [07]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)\HD(6,GPT,28119815-D3A5-455D-99F0-303AE1D0AB57,0x178AC800,0x56ADDCF)

0:447  0:001          Result of bootcode detection: bootable Windows (vista,win)

0:447  0:000  - [08]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)\HD(7,GPT,5AE49DC4-B501-4F49-9DA8-BEE16C5D8678,0x1CF5A800,0x189800)

0:448  0:001          Result of bootcode detection: bootable Windows (vista,win)

0:448  0:000  - [09]: Volume: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)\HD(8,GPT,E2A7292F-60C4-426C-B1A6-19D7C8F1ADFD,0x1D0E4800,0xE1000)

0:449  0:001          Result of bootcode detection: bootable unknown (legacy)

0:452  0:003  Loading nvram.plist from Vol 'EFI' - loaded, size=2604

0:454  0:001  === [ PutNvramPlistToRtVars ] =============================

0:454  0:000   Adding Key: EFILoginHiDPI: Size = 4, Data: 00 00 00 00

0:454  0:000   Skipping EmuVariableUefiPresent

0:454  0:000   Adding Key: LocationServicesEnabled: Size = 1, Data: 01

0:454  0:000   Skipping OsxAptioFixDrv-RelocBase

0:454  0:000   Adding Key: SystemAudioVolume: Size = 1, Data: 1C

0:454  0:000   Adding Key: SystemAudioVolumeDB: Size = 1, Data: FC

0:454  0:000   Adding Key: backlight-level: Size = 2, Data: FF FF

0:454  0:000   Adding Key: boot-args: String: Size = 15, Val = 'vm_compressor=2'

0:454  0:000   Adding Key: bootercfg: Size = 2, Data: 28 00

0:454  0:000   Adding Key: csr-active-config: Size = 4, Data: 67 00 00 00

0:454  0:000   Adding Key: fakesmc-key-#KEY-ui32: Size = 4, Data: 00 00 00 18

0:454  0:000   Adding Key: fakesmc-key-$Adr-ui32: Size = 4, Data: 00 00 03 00

0:454  0:000   Adding Key: fakesmc-key-$Num-ui8: Size = 1, Data: 01

0:454  0:000   Adding Key: fakesmc-key-$Num-ui8 : Size = 1, Data: 01

0:454  0:000   Adding Key: fakesmc-key-BATP-flag: Size = 1, Data: 00

0:454  0:000   Adding Key: fakesmc-key-BBIN-ui8: Size = 1, Data: 01

0:454  0:000   Adding Key: fakesmc-key-BBIN-ui8 : Size = 1, Data: 01

0:454  0:000   Adding Key: fakesmc-key-BEMB-flag: Size = 1, Data: 01

0:454  0:000   Adding Key: fakesmc-key-BNum-ui8: Size = 1, Data: 01

0:454  0:000   Adding Key: fakesmc-key-BNum-ui8 : Size = 1, Data: 01

0:454  0:000   Adding Key: fakesmc-key-EPCI-ui32: Size = 4, Data: 06 60 07 00

0:454  0:000   Adding Key: fakesmc-key-MSAc-ui16: Size = 2, Data: 00 00

0:454  0:000   Adding Key: fakesmc-key-MSFW-ui8: Size = 2, Data: 01 00

0:454  0:000   Adding Key: fakesmc-key-MSLD-ui8: Size = 1, Data: 00

0:454  0:000   Adding Key: fakesmc-key-MSLD-ui8 : Size = 1, Data: 00

0:454  0:000   Adding Key: fakesmc-key-MSPS-ui16: Size = 2, Data: 00 03

0:454  0:000   Adding Key: fakesmc-key-MSTc-ui8: Size = 1, Data: 00

0:454  0:000   Adding Key: fakesmc-key-MSTc-ui8 : Size = 1, Data: 00

0:454  0:000   Adding Key: fakesmc-key-MSWr-ui8: Size = 1, Data: 00

0:454  0:000   Adding Key: fakesmc-key-MSWr-ui8 : Size = 1, Data: 19

0:454  0:000   Adding Key: fakesmc-key-RBr -ch8*: Size = 8, Data: 62 72 61 6E 63 68 00 00

0:454  0:000   Adding Key: fakesmc-key-REV -ch8*: Size = 6, Data: 02 02 0F 00 00 44

0:454  0:000   Adding Key: fakesmc-key-RMde-char: Size = 1, Data: 41

0:454  0:000   Adding Key: fakesmc-key-RPlt-ch8*: Size = 8, Data: 6A 33 30 00 00 00 00 00

0:454  0:000   Adding Key: flagstate: Size = 32, Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

0:454  0:000   Adding Key: fmm-computer-name: Size = 13, Data: 50 72 6F 42 6F 6F 6B 20 34 33 34 30 73

0:454  0:000   Adding Key: intel-backlight-level: Size = 4, Data: 40 03 00 00

0:454  0:000   Adding Key: prev-lang:kbd: Size = 4, Data: 65 6E 3A 30

0:454  0:000   Adding Key: security-mode: String: Size = 4, Val = 'none'

0:454  0:000   Adding Key: specialbootdevice: Size = 74, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 02 1F 03 12 0A 00 00 00 00 00 00 00 04 01 2A 00 02 00 00 00 00 48 06 00 00 00 00 00 E0 A0 70 0C 00 00 00 00 B5 25 D9 FD 21 CF 0D 4E 90 79 B1 B3 A4 9C 1A 5C 02 02 7F FF 04 00

0:454  0:000  === [ InitTheme ] =========================================

0:455  0:000  Using theme 'Universe' (EFI\CLOVER\themes\Universe)

0:455  0:000  OS main and drive as badge

0:457  0:001  Loading font from ThemeDir: Success

0:457  0:000  Choosing theme Universe

0:457  0:000  found boot-args in NVRAM:vm_compressor=2, size=15

0:457  0:000  ...found arg:vm_compressor=2

0:457  0:000  ...adding arg:vm_compressor=2

0:457  0:000  after NVRAM boot-args=kext-dev-mode=1 dart=0 -v vm_compressor=2

0:457  0:000  === [ Dump SMC keys from NVRAM ] ==========================

0:457  0:000  found AppleSMC protocol

0:457  0:000     fakesmc-key-#KEY-ui32:00 00 00 18

0:457  0:000     fakesmc-key-$Adr-ui32:00 00 03 00

0:457  0:000     fakesmc-key-$Num-ui8:01

0:457  0:000     fakesmc-key-$Num-ui8 :01

0:457  0:000     fakesmc-key-BATP-flag:00

0:457  0:000     fakesmc-key-BBIN-ui8:01

0:457  0:000     fakesmc-key-BBIN-ui8 :01

0:457  0:000     fakesmc-key-BEMB-flag:01

0:457  0:000     fakesmc-key-BNum-ui8:01

0:457  0:000     fakesmc-key-BNum-ui8 :01

0:457  0:000     fakesmc-key-EPCI-ui32:06 60 07 00

0:457  0:000     fakesmc-key-MSAc-ui16:00 00

0:457  0:000     fakesmc-key-MSFW-ui8:01 00

0:457  0:000     fakesmc-key-MSLD-ui8:00

0:457  0:000     fakesmc-key-MSLD-ui8 :00

0:457  0:000     fakesmc-key-MSPS-ui16:00 03

0:457  0:000     fakesmc-key-MSTc-ui8:00

0:457  0:000     fakesmc-key-MSTc-ui8 :00

0:457  0:000     fakesmc-key-MSWr-ui8:00

0:457  0:000     fakesmc-key-MSWr-ui8 :19

0:457  0:000     fakesmc-key-RBr -ch8*:62 72 61 6E 63 68 00 00

0:457  0:000     fakesmc-key-REV -ch8*:02 02 0F 00 00 44

0:457  0:000     fakesmc-key-RMde-char:41

0:457  0:000     fakesmc-key-RPlt-ch8*:6A 33 30 00 00 00 00 00

0:457  0:000  === [ AddCustomEntries ] ==================================

0:457  0:000  Custom entry 0 skipped because it is disabled.

0:457  0:000  === [ ScanLoader ] ========================================

0:457  0:000  - [02]: 'EFI'

0:459  0:002          AddLoaderEntry for Volume Name=EFI

0:459  0:000      Not match custom entry 0: Type: not match

0:488  0:028  - [03]: 'OS X'

0:493  0:004          AddLoaderEntry for Volume Name=OS X

0:493  0:000      Not match custom entry 0: Type: not match

0:497  0:004      hibernated: set as never

0:498  0:001          [!] Icon 17 (icons\vol_internal_hfs.icns) not found (path: EFI\CLOVER\themes\Universe)

0:512  0:013  - [04]: 'Recovery HD'

0:513  0:001          AddLoaderEntry for Volume Name=Recovery HD

0:513  0:000      Not match custom entry 0: Type: not match

0:528  0:015  - [06]: 'MSR'

0:541  0:012  - [09]: 'RECOVERY'

0:553  0:012  === [ AddCustomTool ] =====================================

0:553  0:000  found tool \EFI\CLOVER\tools\Shell64U.efi

0:553  0:000  Checking EFI partition Volume 2 for Clover

0:553  0:000   Found Clover

0:554  0:000  EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored

0:554  0:000  EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success

0:555  0:000  === [ GetEfiBootDeviceFromNvram ] =========================

0:555  0:000   - found entry 1. 'Boot macOS from OS X', Volume 'OS X', DevicePath 'PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0x0,0x0)\HD(2,GPT,FDD925B5-CF21-4E0D-9079-B1B3A49C1A5C,0x64800,0xC70A0E0)\System\Library\CoreServices\boot.efii'

0:555  0:000  EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored

0:555  0:000  DefaultIndex=1 and MainMenu.EntryCount=9

0:752  0:196  SelectionSmallFileName != NULL

0:752  0:000  SelectionBigFileName != NULL

0:758  0:005  GUI ready

4:761  4:003  === [ StartLoader ] =======================================

4:761  0:000  Finally: Bus=99773kHz CPU=2594MHz

4:761  0:000  Loading boot.efi  status=Success

4:782  0:020  GetOSVersion: 10.11.6 (15G1217)

4:782  0:000  CSR_CFG: CSR_ALLOW_UNTRUSTED_KEXTS | CSR_ALLOW_UNRESTRICTED_FS | CSR_ALLOW_TASK_FOR_PID | CSR_ALLOW_UNRESTRICTED_DTRACE | CSR_ALLOW_UNRESTRICTED_NVRAM

4:782  0:000  Filtering KextPatches:

4:782  0:000   - [00]: com.apple.driver.usb.AppleUSBXHCIPCI (change 15 port limit to 26 in XHCI kext (100-series)) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.11.x | MatchBuild: All] ==> disabled by user

4:782  0:000   - [01]: com.apple.driver.usb.AppleUSBXHCIPCI (change 15 port limit to 26 in XHCI kext (100-series)) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.12.x | MatchBuild: All] ==> disabled by user

4:782  0:000   - [02]: com.apple.driver.AppleHDA (AppleHDA .xml.zl to .zml.zl) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.10.x,10.11.x,10.12.x | MatchBuild: All] ==> disabled by user

4:782  0:000   - [03]: com.apple.iokit.IOAHCIBlockStorage (Enable TRIM for non-Apple SSDs) :: BinPatch :: [OS: 10.11.6 | MatchOS: All | MatchBuild: All] ==> allowed

4:782  0:000   - [04]: com.apple.iokit.IOGraphicsFamily (Boot graphics glitch, 10.10.x/10.11.x (credit lisai9093, cecekpawon)) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.10.x,10.11.x | MatchBuild: All] ==> allowed

4:782  0:000   - [05]: com.apple.iokit.IOGraphicsFamily (Boot graphics glitch, 10.12.dp1 (credit denskop)) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.12.x | MatchBuild: All] ==> not allowed

4:782  0:000   - [06]: com.apple.driver.AirPort.Brcm4360 (AirPortBrcm4360 whitelist patch (board-id), 10.12.dp1, credit RehabMan) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.12.x | MatchBuild: All] ==> not allowed

4:782  0:000   - [07]: com.apple.driver.AirPort.Brcm4360 (AirPortBrcm4360 whitelist patch (board-id), 10.11.x, credit RehabMan) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.11.x | MatchBuild: All] ==> allowed

4:782  0:000   - [08]: com.apple.driver.AirPort.Brcm4360 (AirPortBrcm4360 whitelist patch (board-id), 10.10.5, credit RehabMan) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.10.5 | MatchBuild: All] ==> not allowed

4:782  0:000   - [09]: com.apple.driver.AirPort.Brcm4360 (10.9.5 5Ghz US FCC, svko) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.9.5 | MatchBuild: All] ==> not allowed

4:782  0:000   - [10]: com.apple.driver.AirPort.Brcm4360 (10.10.2+ 5Ghz US FCC, the-darkvoid) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.10.x,10.11.x | MatchBuild: All] ==> allowed

4:782  0:000   - [11]: com.apple.driver.AirPort.Brcm4360 (AirPortBrcm4360 - fcvo, 10.12.x (credit the-darkvoid)) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.12.x | MatchBuild: All] ==> not allowed

4:782  0:000   - [12]: com.apple.iokit.IOBluetoothFamily (10.10.2+ BT4LE-Handoff-Hotspot, Dokterdok) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.10.x | MatchBuild: All] ==> not allowed

4:782  0:000   - [13]: com.apple.iokit.IOBluetoothFamily (10.11.dp1+ BT4LE-Handoff-Hotspot, credit RehabMan based on Dokterdok original) :: BinPatch :: [OS: 10.11.6 | MatchOS: 10.11.x,10.12.x | MatchBuild: All] ==> allowed

4:782  0:000   - [14]: com.apple.driver.AppleIntelSNBGraphicsFB (HDMI-audio HD3000, 0x00010000, port 0406) :: BinPatch :: [OS: 10.11.6 | MatchOS: All | MatchBuild: All] ==> allowed

4:782  0:000   - [15]: com.apple.driver.AppleIntelFramebufferCapri (HDMI-video, 64MB BIOS, HD4000 0x01660004 #1 of 2) :: BinPatch :: [OS: 10.11.6 | MatchOS: All | MatchBuild: All] ==> allowed

4:782  0:000   - [16]: com.apple.driver.AppleIntelFramebufferCapri (HDMI-video, 64MB BIOS, HD4000 0x01660004 #2 of 2 (order dependency, port 0406 patch)) :: BinPatch :: [OS: 10.11.6 | MatchOS: All | MatchBuild: All] ==> allowed

4:782  0:000   - [17]: com.apple.driver.AppleIntelFramebufferCapri (HDMI-audio HD4000 0x01660003/0004, port 0406 (order dependency HDMI-video 0x01660004 above)) :: BinPatch :: [OS: 10.11.6 | MatchOS: All | MatchBuild: All] ==> allowed

4:782  0:000   - [18]: com.apple.driver.AppleHDA (IDT 76d9 #1 of 4) :: BinPatch :: [OS: 10.11.6 | MatchOS: All | MatchBuild: All] ==> disabled by user

4:782  0:000   - [19]: com.apple.driver.AppleHDA (IDT 76d9 #2 of 4) :: BinPatch :: [OS: 10.11.6 | MatchOS: All | MatchBuild: All] ==> disabled by user

4:782  0:000   - [20]: com.apple.driver.AppleHDA (IDT 76d9 #3 of 4) :: BinPatch :: [OS: 10.11.6 | MatchOS: All | MatchBuild: All] ==> disabled by user

4:782  0:000   - [21]: com.apple.driver.AppleHDA (IDT 76d9 #4 of 4) :: BinPatch :: [OS: 10.11.6 | MatchOS: All | MatchBuild: All] ==> disabled by user

4:782  0:000  EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success

4:783  0:000  === [ PatchSmbios ] =======================================

4:783  0:000  insert table 9 for dev 0:0

4:783  0:000  insert table 9 for dev 0:0

4:783  0:000  Trusting SMBIOS...

4:783  0:000  Detected alternating SMBIOS channel banks

4:783  0:000  Channels: 2

4:783  0:000  Interleave: 0 2 1 3 4 6 5 7 8 10 9 11 12 14 13 15 16 18 17 19 20 22 21 23

4:783  0:000   partNum=9905428-045.A00LF

4:783  0:000  SMBIOS Type 17 Index = 0 => 0 0:

4:783  0:000  BANK0 DIMM0 1333MHz 4096MB

4:783  0:000   partNum=9905428-045.A00LF

4:783  0:000  SMBIOS Type 17 Index = 1 => 1 2:

4:783  0:000  BANK1 DIMM0 1333MHz 4096MB

4:783  0:000  mTotalSystemMemory = 8192

4:783  0:000  NumberOfMemoryDevices = 2

4:783  0:000  Type20[0]->End = 0x3FFFFF, Type17[0] = 0x1000

4:783  0:000  Type20[1]->End = 0x7FFFFF, Type17[1] = 0x3000

4:783  0:000  Table 131 is present, CPUType=31

4:783  0:000  Change to: 604

4:783  0:000  === [ PatchACPI ] =========================================

4:783  0:000  RSDT 0xA9FFE0AC

4:783  0:000  FADT from RSDT: 0xA9FFC000

4:783  0:000  XSDT 0xA9FFE120

4:783  0:000  FADT from XSDT: 0xA9FFC000

4:783  0:000  Xsdt reallocation done

4:783  0:000  old FADT length=10C

4:783  0:000  Apply DsdtFixMask=0x80060050 new way

4:783  0:000     drop _DSM mask=0xFFFF

4:783  0:000  === [ FixBiosDsdt ] =======================================

4:783  0:000  VideoCard devID=0x1668086

4:783  0:000  DisplayADR1[0] = 0x20000, DisplayADR2[0] = 0xFFFE

4:783  0:000  USBADR[0] = 0x140000 and PCIe = 0xFFFE

4:783  0:000  USBADR[1] = 0x1A0000 and PCIe = 0xFFFE

4:793  0:010  Audio HDA (addr:0x1B0000) setting specified layout-id=12 (0xC)

4:794  0:000  Found Airport Atheros at 0x1C0003, 0x0, DeviceID=0x002A

4:794  0:000  USBADR[2] = 0x1D0000 and PCIe = 0xFFFE

4:794  0:000  Patching DSDT:

4:794  0:000   - [change _DSM to XDSM]: pattern 5F44534D, patched at: [ (4C22) (4365) ]

4:794  0:000   OK

4:794  0:000   - [change _OSI to XOSI]: pattern 5F4F5349, patched at: [ (A0C) (4) (12) (19) (1D) (1D) (1B) (19) (19) (19) (125D) (C6F) (4) (18) (1C) (1C) (18) (18) (18) (36A8) (59) (4C80) (38) (38) (38) ]

4:794  0:000   OK

4:794  0:000   - [change EHC1 to EH01]: pattern 45484331, patched at: [ (1528) (12) (10) (493D) (4D1B) (16779) ]

4:794  0:000   OK

4:794  0:000   - [change EHC2 to EH02]: pattern 45484332, patched at: [ (1565) (12) (10) (142) (4946) (1B31E) ]

4:794  0:000   OK

4:794  0:000   - [change GFX0 to IGPU]: pattern 47465830, patched at: [ (356) (35AA) (570) (11) (21) (ADD) (1D) (2DF) (3FB) (49) (259) (14) (14) (2B) (44) (22) (2E) (86) (1C) (29) (2D) (2A) (34) (24) (F) (2D) (43) (1A) (24) (1E) (19) (23) (1E) (36) (27) ]

4:795  0:000   OK

4:795  0:000   - [Change Device(HECI) _ADR=0x00160000 to _ADR=0]: disabled

4:795  0:000   - [change HDAS to HDEF]: pattern 48444153, bin not found / already patched!

4:795  0:000   OK

4:795  0:000   - [change B0D3 to HDAU]: pattern 42304433, bin not found / already patched!

4:795  0:000   OK

4:795  0:000   - [change SAT0 to SATA]: pattern 53415430, bin not found / already patched!

4:795  0:000   OK

4:795  0:000   - [change Method(UPRW,2,S) to XPRW]: pattern 55505257, patched at: [ (2AB4) ]

4:795  0:000   OK

4:795  0:000   - [change Method(GPRW,2,N) to XPRW]: pattern 47505257, bin not found / already patched!

4:795  0:000   OK

4:795  0:000   - [change LANC Method(_PRW,0,Serialized) to Method(XPRW,0,..)]: pattern 00001900, patched at: [ (5E2B) ]

4:796  0:000   OK

4:796  0:000   - [change _PTS to ZPTS]: pattern 5F505453, patched at: [ (626) ]

4:796  0:000   OK

4:796  0:000   - [change _WAK to ZWAK]: pattern 5F57414B, patched at: [ (693) ]

4:796  0:000   OK

4:796  0:000   - [change _WAK to ZWAK (G3)]: pattern 5F57414B, bin not found / already patched!

4:796  0:000   OK

4:796  0:000   - [change Method(BTIF,1,Serialized) to BTI0]: pattern 42544946, patched at: [ (7873) ]

4:796  0:000   OK

4:796  0:000   - [change Method(BTIF,1,Serialized) to BTI0 (G3)]: pattern 42544946, bin not found / already patched!

4:796  0:000   OK

4:796  0:000   - [change Method(BTST,2,Serialized) to BTS1]: pattern 42545354, patched at: [ (7986) ]

4:797  0:000   OK

4:797  0:000   - [change Method(BTST,2,Serialized) to BTS1 (G3)]: pattern 42545354, bin not found / already patched!

4:797  0:000   OK

4:797  0:000   - [change Method(SBTC,3,NotSerialized) to SBT2]: pattern 53425443, patched at: [ (81FD) ]

4:797  0:000   OK

4:797  0:000   - [change Method(GBTI,1,NotSerialized) to GBT3]: pattern 47425449, patched at: [ (7B21) ]

4:797  0:000   OK

4:797  0:000   - [change Method(GBTC,0,NotSerialized) to GBT4]: pattern 47425443, patched at: [ (7FBC) ]

4:797  0:000   OK

4:797  0:000   - [change Name(NBTI,..) to NBT5]: pattern 084E4254, patched at: [ (C83D) ]

4:797  0:000   OK

4:797  0:000   - [change Notify(\_SB.BAT0,...) to Notify(_SB.BATC,...)]: pattern 865C2E5F, patched at: [ (867A) (71) (64) (200) ]

4:797  0:000   OK

4:797  0:000   - [change Notify(\_SB.BAT1,...) to Notify(_SB.BATC,...)]: pattern 865C2E5F, patched at: [ (8665) (10A) (19) (1DA) ]

4:798  0:000   OK

4:798  0:000   - [change Notify(BAT0,...) to Notify(BATC,...)]: pattern 86424154, bin not found / already patched!

4:798  0:000   OK

4:798  0:000   - [change Notify(BAT1,...) to Notify(BATC,...)]: pattern 86424154, bin not found / already patched!

4:798  0:000   OK

4:798  0:000  first CPU found at 1747 offset 174A

4:798  0:000  score candidate at 1743

4:798  0:000  score inserted in acpi_cpu_score _PR_

4:798  0:000  Found ACPI CPU: CPU0 | CPU1 | CPU2 | CPU3 | CPU4 | CPU5 | CPU6 | CPU7 , within the score: _PR_

4:799  0:000  Start RTC Fix

4:799  0:000  found RTC Length not match, Maybe will case CMOS reset will patch it.

4:799  0:000  found RTC had IRQNoFlag will move -3 bytes

4:799  0:000  ...len=21549

4:799  0:000  new size written to 9626 shift=0 len=21549

4:799  0:000  len after correct outers 21549

4:799  0:000  Start TMR Fix

4:799  0:000  Start PIC Fix

4:799  0:000  PIC size=A5 at 94AB

4:799  0:000  found CRS at 94BF size 8D

4:799  0:000  found PIC had IRQNoFlag will move -3 bytes

4:800  0:000  Fix Device PIC size -3

4:800  0:000  Start HPET Fix

4:801  0:001  === [ ACPIDropTables ] ====================================

4:801  0:000  Drop tables from Xsdt, SIGN=SSDT TableID=PtidDevc Length=1162

4:801  0:000   Xsdt has tables count=11

4:801  0:000   Table: SSDT  PtidDevc  1162 dropped

4:801  0:000  corrected XSDT length=116

4:801  0:000  === [ PatchAllSSDT ] ======================================

4:801  0:000  Patch table: SSDT  SataAhci

4:801  0:000   SSDT len = 0x2CA

4:801  0:000  Patching SSDT:

4:801  0:000   - [change _DSM to XDSM]: pattern 5F44534D, patched at: [ (9D) (55) ]

4:801  0:000   OK

4:801  0:000   - [change _OSI to XOSI]: pattern 5F4F5349, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change EHC1 to EH01]: pattern 45484331, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change EHC2 to EH02]: pattern 45484332, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change GFX0 to IGPU]: pattern 47465830, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [Change Device(HECI) _ADR=0x00160000 to _ADR=0]: disabled

4:801  0:000   - [change HDAS to HDEF]: pattern 48444153, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change B0D3 to HDAU]: pattern 42304433, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change SAT0 to SATA]: pattern 53415430, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(UPRW,2,S) to XPRW]: pattern 55505257, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(GPRW,2,N) to XPRW]: pattern 47505257, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change LANC Method(_PRW,0,Serialized) to Method(XPRW,0,..)]: pattern 00001900, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change _PTS to ZPTS]: pattern 5F505453, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change _WAK to ZWAK]: pattern 5F57414B, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change _WAK to ZWAK (G3)]: pattern 5F57414B, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTIF,1,Serialized) to BTI0]: pattern 42544946, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTIF,1,Serialized) to BTI0 (G3)]: pattern 42544946, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTST,2,Serialized) to BTS1]: pattern 42545354, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTST,2,Serialized) to BTS1 (G3)]: pattern 42545354, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(SBTC,3,NotSerialized) to SBT2]: pattern 53425443, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(GBTI,1,NotSerialized) to GBT3]: pattern 47425449, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(GBTC,0,NotSerialized) to GBT4]: pattern 47425443, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Name(NBTI,..) to NBT5]: pattern 084E4254, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(\_SB.BAT0,...) to Notify(_SB.BATC,...)]: pattern 865C2E5F, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(\_SB.BAT1,...) to Notify(_SB.BATC,...)]: pattern 865C2E5F, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(BAT0,...) to Notify(BATC,...)]: pattern 86424154, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(BAT1,...) to Notify(BATC,...)]: pattern 86424154, bin not found / already patched!

4:801  0:000   OK

4:801  0:000  Patch table: SSDT  Cpu0Ist

4:801  0:000   SSDT len = 0x9B6

4:801  0:000  Patching SSDT:

4:801  0:000   - [change _DSM to XDSM]: pattern 5F44534D, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change _OSI to XOSI]: pattern 5F4F5349, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change EHC1 to EH01]: pattern 45484331, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change EHC2 to EH02]: pattern 45484332, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change GFX0 to IGPU]: pattern 47465830, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [Change Device(HECI) _ADR=0x00160000 to _ADR=0]: disabled

4:801  0:000   - [change HDAS to HDEF]: pattern 48444153, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change B0D3 to HDAU]: pattern 42304433, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change SAT0 to SATA]: pattern 53415430, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(UPRW,2,S) to XPRW]: pattern 55505257, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(GPRW,2,N) to XPRW]: pattern 47505257, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change LANC Method(_PRW,0,Serialized) to Method(XPRW,0,..)]: pattern 00001900, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change _PTS to ZPTS]: pattern 5F505453, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change _WAK to ZWAK]: pattern 5F57414B, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change _WAK to ZWAK (G3)]: pattern 5F57414B, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTIF,1,Serialized) to BTI0]: pattern 42544946, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTIF,1,Serialized) to BTI0 (G3)]: pattern 42544946, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTST,2,Serialized) to BTS1]: pattern 42545354, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTST,2,Serialized) to BTS1 (G3)]: pattern 42545354, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(SBTC,3,NotSerialized) to SBT2]: pattern 53425443, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(GBTI,1,NotSerialized) to GBT3]: pattern 47425449, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(GBTC,0,NotSerialized) to GBT4]: pattern 47425443, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Name(NBTI,..) to NBT5]: pattern 084E4254, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(\_SB.BAT0,...) to Notify(_SB.BATC,...)]: pattern 865C2E5F, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(\_SB.BAT1,...) to Notify(_SB.BATC,...)]: pattern 865C2E5F, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(BAT0,...) to Notify(BATC,...)]: pattern 86424154, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(BAT1,...) to Notify(BATC,...)]: pattern 86424154, bin not found / already patched!

4:801  0:000   OK

4:801  0:000  Patch table: SSDT  CpuPm

4:801  0:000   SSDT len = 0xAAD

4:801  0:000  Patching SSDT:

4:801  0:000   - [change _DSM to XDSM]: pattern 5F44534D, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change _OSI to XOSI]: pattern 5F4F5349, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change EHC1 to EH01]: pattern 45484331, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change EHC2 to EH02]: pattern 45484332, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change GFX0 to IGPU]: pattern 47465830, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [Change Device(HECI) _ADR=0x00160000 to _ADR=0]: disabled

4:801  0:000   - [change HDAS to HDEF]: pattern 48444153, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change B0D3 to HDAU]: pattern 42304433, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change SAT0 to SATA]: pattern 53415430, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(UPRW,2,S) to XPRW]: pattern 55505257, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(GPRW,2,N) to XPRW]: pattern 47505257, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change LANC Method(_PRW,0,Serialized) to Method(XPRW,0,..)]: pattern 00001900, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change _PTS to ZPTS]: pattern 5F505453, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change _WAK to ZWAK]: pattern 5F57414B, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change _WAK to ZWAK (G3)]: pattern 5F57414B, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTIF,1,Serialized) to BTI0]: pattern 42544946, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTIF,1,Serialized) to BTI0 (G3)]: pattern 42544946, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTST,2,Serialized) to BTS1]: pattern 42545354, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(BTST,2,Serialized) to BTS1 (G3)]: pattern 42545354, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(SBTC,3,NotSerialized) to SBT2]: pattern 53425443, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(GBTI,1,NotSerialized) to GBT3]: pattern 47425449, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Method(GBTC,0,NotSerialized) to GBT4]: pattern 47425443, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Name(NBTI,..) to NBT5]: pattern 084E4254, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(\_SB.BAT0,...) to Notify(_SB.BATC,...)]: pattern 865C2E5F, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(\_SB.BAT1,...) to Notify(_SB.BATC,...)]: pattern 865C2E5F, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(BAT0,...) to Notify(BATC,...)]: pattern 86424154, bin not found / already patched!

4:801  0:000   OK

4:801  0:000   - [change Notify(BAT1,...) to Notify(BATC,...)]: pattern 86424154, bin not found / already patched!

4:801  0:000   OK

4:801  0:000  Drop tables from Xsdt, SIGN=XXXX TableID= Length=0

4:801  0:000   Xsdt has tables count=10

4:801  0:000  corrected XSDT length=116

4:801  0:000  === [ ACPIPatchedAML ] ====================================

4:801  0:000  Start: Processing Patched AML(s): Unsorted

4:801  0:000  Inserting ssdt.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-XOSI.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-XHC.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-USB-4x40s.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-SMBUS.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-SATA.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-PRW.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-PNLF.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-LPC.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-LANC_PRW.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-KEY102.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-IGPU.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-HACK.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-FAN-SMOOTH.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-EH02.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-EH01.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-BATT.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-BATC.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  Inserting SSDT-4x40s.aml from EFI\CLOVER\ACPI\patched ... Success

4:801  0:000  End: Processing Patched AML(s)

4:801  0:000  CPUBase=0 and ApicCPUBase=0 ApicCPUNum=8

4:801  0:000  === [ RestSetup macOS ] ===================================

4:801  0:000  EdidDiscovered size=128

4:801  0:000  000  |  00  FF  FF  FF  FF  FF  FF  00  06  AF

4:801  0:000  010  |  2C  31  00  00  00  00  00  15  01  04

4:801  0:000  020  |  90  1D  10  78  02  15  85  97  58  53

4:801  0:000  030  |  8A  26  25  50  54  00  00  00  01  01

4:801  0:000  040  |  01  01  01  01  01  01  01  01  01  01

4:801  0:000  050  |  01  01  01  01  CE  1D  56  E2  50  00

4:801  0:000  060  |  1E  30  26  16  36  00  25  A4  10  00

4:801  0:000  070  |  00  18  DF  13  56  E2  50  00  1E  30

4:801  0:000  080  |  26  16  36  00  25  A4  10  00  00  18

4:801  0:000  090  |  00  00  00  00  00  00  00  00  00  00

4:801  0:000  100  |  00  00  00  00  00  00  00  00  00  00

4:801  0:000  110  |  00  02  00  0C  48  FF  0A  3C  64  0F

4:801  0:000  120  |  0F  1A  64  20  20  20  00  F4

4:801  0:000  Intel GFX injection not set

4:801  0:000   setting specified layout-id=12 (0xC)

4:802  0:000  stringlength = 552

4:802  0:000  CurrentMode: Width=1024 Height=768

4:802  0:000  Beginning FSInjection

FSInjectionInstall ...

- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: A4BA0918

FSInjectionInstall ...

- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: A4BA0918

4:803  0:001  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\Other

4:803  0:000  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\10.11

4:803  0:000    Extra kext: EFI\CLOVER\kexts\10.11\AppleALC.kext

4:809  0:005      Extra PlugIn kext: EFI\CLOVER\kexts\10.11\AppleALC.kext\Contents\PlugIns\PinConfigs.kext

4:885  0:076  Custom boot screen not used because entry has unset use graphics

 

 

Link to comment
Share on other sites

@Sherlocks & PMheart

When you have a time test, please, 3991 changing 0 -> 1

#if 0  //need testing
VOID EFIAPI KernelBooterExtensionsPatch(IN UINT8 *Kernel, LOADER_ENTRY *Entry)
{

I already tested 10.7.3 32/64 and it seems work...

 

PS. Sorry

attachicon.gifCLOVERX64.efi-3992-test1.zip

Seriously. Now in Singapore. My hackintosh build is in China so may test some days later......

Link to comment
Share on other sites

Seriously. Now in Singapore. My hackintosh build is in China so may test some days later......

Me too. I'm in parents home. Today and tommorow i can't test in detail.

 

At least, i will spend 2 days.

 

After back home, i will test.

 

나의 LG-F410S 의 Tapatalk에서 보냄

  • Like 1
Link to comment
Share on other sites

@Sherlocks & PMheart

When you have a time test, please, 3991 changing 0 -> 1

#if 0  //need testing
VOID EFIAPI KernelBooterExtensionsPatch(IN UINT8 *Kernel, LOADER_ENTRY *Entry)
{

I already tested 10.7.3 32/64 and it seems work...

 

PS. Sorry

attachicon.gifCLOVERX64.efi-3992-test1.zip

 

hello Slice good morning

 

tested el capo last version > works

 

10.12.4 also works

 

and boot fast .. no delay

 

but in 10.12.3 the kext injection is not working 

 

thanks

Link to comment
Share on other sites

It is why this is testing version. Thanks!

We have to seperate sierra version.

 

YosEXT=10.11~10.12.1 DP1

SieEXT=10.12.1 DP2 ~ 10.12.3

Sie4EXT=10.2.4 DP1 ~

 

now, this is not reflect sierra version in r3991. So 10.12.3 cant boot

 

We think "to divide10.12.1 dp1 and 10.12.1 dp2"

 

If we don't think divide dp1 and dp2, can resolve easily. If we think it, Maybe need MatchBuild version

 

나의 LG-F410S 의 Tapatalk에서 보냄

  • Like 2
Link to comment
Share on other sites

@Slice you are missing a patch for SieDP2 - 10.12.3 and that's why 10.12.3 not working...

This patch may fix it. Please test and feedback.

 

Edit: Sorry for my stupid typo. There was something wrong in the last code. And this one is fixed... Also provides a pre-built binary.

Edit 2: The last version was still wrong, but this one must be correct. And it's time for me to get a new pair of glasses LOL

 

 

 

Edited by PMheart
  • Like 1
Link to comment
Share on other sites

@Slice you are missing a patch for SieDP2 - 10.12.3 and that's why 10.12.3 not working...

This patch may fix it. Please test and feedback.

 

Edit: Sorry for my stupid typo. There was something wrong in the last code. And this one is fixed... Also provides a pre-built binary.

Edit 2: The last version was still wrong, but this one must be correct. And it's time for me to get a new pair of glasses LOL

 

attachicon.gifInjectKext_fixed.zip

I see. Why divide 10.12.4 sierra if you combine 10.12.1 dp1 ~ 10.12.3?

 

If so, join 10.12.4

 

SierraSIP is same. You just did add YosEXT for dp1 in sierra part. no more need to divide 10.12.4 part.

 

나의 LG-F410S 의 Tapatalk에서 보냄

Link to comment
Share on other sites

I see. Why divide 10.12.4 sierra if you combine 10.12.1 dp1 ~ 10.12.3?

 

If you join, 10.12.4 will join together.

 

SierraSIP is same. You just did add YosEXT for dp1 in sierra part. no more need to divide 10.12.4 part.

 

나의 LG-F410S 의 Tapatalk에서 보냄

Ah that's Slice did. Not me.

Yes. You can merge all Sierra versions. And that will be:

 

1. DP1 ==> YosEXT* and SieSIP*

2. DP2 ~ 10.12.3 ==> SieEXT* and SieSIP*

3. 10.12.4 ==> Sie4EXT* and SieSIP*

 

But I think it will be a little complicated. And I have a new idea:

 

1. First run SieSIP* cuz it is universal.

2. And then use "brute-force" way (Try to patch) to divide DP1/DP2~10123/10124

 

But... To tired today and have no ability to test recently...

 

BTW. Happy Chinese New Year.  :)

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...