Riley Freeman Posted July 9, 2016 Share Posted July 9, 2016 I think what RehabMan is saying is that if the NVMe kext gets updated and any of the patches fail, you could likely end up with an unbootable system. So it's safer to use a patched kext instead (or maybe have a bootable Clover option with the patched kext as a fallback). Link to comment Share on other sites More sharing options...
RehabMan Posted July 9, 2016 Share Posted July 9, 2016 I think what RehabMan is saying is that if the NVMe kext gets updated and any of the patches fail, you could likely end up with an unbootable system. Actually, an "unbootable system" would be the *best result* in that scenario. I'm more concerned about a partial patch scenario that allows the system to boot, but results in corrupt data due to a buggy partially patched kext. Unfortunately, I think the chances of "unbootable" vs. "bootable but incorrect/dangerous" are about 50/50 or maybe worse. 404 error here.. Consider that to avoid bad patches for newer versions, MatchOS can be set to match specic revision of macOS X. Off course DPs/Betas are another story.. Locking it down to specific versions mostly avoids the problem of a partial patch, but also would result in an unbootable system in the case of an update. I say "mostly avoids" because Apple has been known to update the kernel and other kexts in "security updates", which don't come with a new version identifier. 5 Link to comment Share on other sites More sharing options...
Slice Posted July 9, 2016 Share Posted July 9, 2016 How Clover can get exact version 15G26a? Anyway, if OS is not matched then NVME will not be patched? Not a way. 1 Link to comment Share on other sites More sharing options...
RehabMan Posted July 9, 2016 Share Posted July 9, 2016 Anyway, if OS is not matched then NVME will not be patched? Not a way. Not sure what you mean. Two possibilities: 1) you use MatchOS to match only the OS version you know the patches will work with 2) you don't use MatchOS In #1, your system is not bootable following an update. In #2, your system may or may not be bootable upon an update, and one or more of the patches may not match with the new kext (in this case, data corruption is likely). Had you installed a patched kext as I propose (eg. use my patch_nvme.sh script to create HackrIONVMeFamily-*.kext), it is likely the patched kext will continue to work upon updating the system, with no risk of data corruption. You can then, at your leisure, and when such patches are developed, create a new HackrNVMeFamily-*.kext, which you can install to replace the older HackrNVMeFamily-*.kext. Note also that multiboot scenarios (multiple versions of OS X) are simplified since each system volume has its own copy of the appropriate HackrNVMeFamily-*.kext. 1 Link to comment Share on other sites More sharing options...
sebinouse Posted July 9, 2016 Share Posted July 9, 2016 Yes, but I would not recommend using Clover KextsToPatch for patching IONVMeFamily.kext. The chances of having a partial patch scenario with updated IONVMeFamily.kext code is very likely and also likely to cause data corruption. Install patched kext instead: https://github.com/RehabMan/patch-nvmehttps://github.com/RehabMan/patch-nvme 404 error here.. Same here (you pasted it 2 times) Correct link :https://github.com/RehabMan/patch-nvme I read your Github page on NVMe, and I see your point. Do we need to disable the orignal kext to avoid further conflicts. Maybe this original kext won't be a problem as it doesn't recognize our SSDs and so it doesn't even load ... 1 Link to comment Share on other sites More sharing options...
wern apfel Posted July 9, 2016 Share Posted July 9, 2016 Since we have a lot of coders here can someone please add the code that we are able to change the small icon size of the clover theme?, it is annoying to add it after all new updates, thanks I don't remember the right code, but i've added something like this to settings.c, and a few lines to lib.h and menu.c, unfortunately the code is on a drive which actually is not build-in. I think it is an easy task for you, thanks Dict2 = GetProperty (Dict, "SelectionSmallWidth"); row1TileSize = (INT32)GetPropertyInteger (Dict2, row1TileSize); Link to comment Share on other sites More sharing options...
Needy Posted July 9, 2016 Share Posted July 9, 2016 Since we have a lot of coders here can someone please add the code that we are able to change the small icon size of the clover theme?, it is annoying to add it after all new updates, thanks I don't remember the right code, but i've added something like this to settings.c, and a few lines to lib.h and menu.c, unfortunately the code is on a drive which actually is not build-in. I think it is an easy task for you, thanks Dict2 = GetProperty (Dict, "SelectionSmallWidth"); row1TileSize = (INT32)GetPropertyInteger (Dict2, row1TileSize); Hello there, The row 1 icons can be as big as 64x64 pixels. How much bigger do you need them to be? In addition, make sure that you are using/creating right icons, for example fill all the space in a 64x64 image. Best regards. Link to comment Share on other sites More sharing options...
wern apfel Posted July 9, 2016 Share Posted July 9, 2016 Hello there, The row 1 icons can be as big as 64x64 pixels. How much bigger do you need them to be? In addition, make sure that you are using/creating right icons, for example fill all the space in a 64x64 image. Best regards. Hi, i use UHD resolution where 64x64 is to small, i've found the files on my USB-Stick not the latest but it should work. I change the size by the theme.plist <key>SelectionSmallWidth</key> <integer>94</integer> Here the files, which need some improvements SelectionSmallWidth.zip Link to comment Share on other sites More sharing options...
magnifico Posted July 9, 2016 Share Posted July 9, 2016 Yes, but I would not recommend using Clover KextsToPatch for patching IONVMeFamily.kext. The chances of having a partial patch scenario with updated IONVMeFamily.kext code is very likely and also likely to cause data corruption. Install patched kext instead: https://github.com/RehabMan/patch-nvmehttps://github.com/RehabMan/patch-nvme it is, they know your script, this solution I love it, but if you then with an update of osx, something goes wrong? I mean with the kext that generates your script Not sure what you mean. Two possibilities: 1) you use MatchOS to match only the OS version you know the patches will work with 2) you don't use MatchOS In #1, your system is not bootable following an update. In #2, your system may or may not be bootable upon an update, and one or more of the patches may not match with the new kext (in this case, data corruption is likely). Had you installed a patched kext as I propose (eg. use my patch_nvme.sh script to create HackrIONVMeFamily-*.kext), it is likely the patched kext will continue to work upon updating the system, with no risk of data corruption. You can then, at your leisure, and when such patches are developed, create a new HackrNVMeFamily-*.kext, which you can install to replace the older HackrNVMeFamily-*.kext. Note also that multiboot scenarios (multiple versions of OS X) are simplified since each system volume has its own copy of the appropriate HackrNVMeFamily-*.kext. it would be nice to know in advance if the patched kext (your) works perfectly with the next upgrade of OSX I read your Github page on NVMe, and I see your point. Do we need to disable the orignal kext to avoid further conflicts. Maybe this original kext won't be a problem as it doesn't recognize our SSDs and so it doesn't even load ... excuse where you read that you have to disable the original kext? To my knowledge Rehabman said the kext not affect the Vanilla kext Yes. One config.plist, differents patches dinamically applied running different versions of OSX. In the case, with 28 patches, this become powerfull because you can decide witch ones must be run in El Capitan or in Sierra (or any other). Carmine post both separated patches, will do it for you.. but so the config, will become long as a highway Link to comment Share on other sites More sharing options...
Micky1979 Posted July 9, 2016 Share Posted July 9, 2016 but so the config, will become long as a highway Yes, but this was not possible before! ..and then no one asks you to pay the toll! Carmine, by the way check for duplicate patches. You don't need to write twice those that are equal (if any). Instead add MatchOS=10.11.6,10.12 (see that the "x" suffix is not given), so patches will not be activated for 10.12.1 for example, and you will have control over updates with no risk of corruption of any kind. This will apply, offcourse, for non DP or Betas that have the same OS version. How Clover can get exact version 15G26a? Anyway, if OS is not matched then NVME will not be patched? Not a way. @Slice, did you think to introduce "MatchBUILD"? ... Link to comment Share on other sites More sharing options...
Fljagd Posted July 9, 2016 Share Posted July 9, 2016 clover 3602 great 0:100 0:100 MemLog inited, TSC freq: 3299995851 0:100 0:000 0:100 0:000 Now is 9.7.2016, 13:27:49 (GMT) 0:100 0:000 Starting Clover rev 3602 on American Megatrends EFI 0:100 0:000 Build with: [Args: ./ebuild.sh -mc --no-usb -t XCODE5 | Command: build -D DISABLE_USB_SUPPORT -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE5 -n 13 | OS: 10.11.5 | XCODE: 7.3.1] 0:100 0:000 SelfDevicePath=PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(1,GPT,0A2A3BFE-C3AC-4090-A736-7453B3238CE2,0x28,0x64000) @C87E1518 0:100 0:000 SelfDirPath = \EFI\BOOT 0:100 0:000 Total Memory Slots Count = 8 0:100 0:000 Type 17 Index = 0 0:100 0:000 SmbiosTable.Type17->Speed = 2133MHz 0:100 0:000 SmbiosTable.Type17->Size = 4096MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_A1 0:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Type 17 Index = 1 0:100 0:000 SmbiosTable.Type17->Speed = 2133MHz 0:100 0:000 SmbiosTable.Type17->Size = 4096MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_A2 0:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Type 17 Index = 2 0:100 0:000 SmbiosTable.Type17->Speed = 2133MHz 0:100 0:000 SmbiosTable.Type17->Size = 4096MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_B1 0:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Type 17 Index = 3 0:100 0:000 SmbiosTable.Type17->Speed = 2133MHz 0:100 0:000 SmbiosTable.Type17->Size = 4096MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_B2 0:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Type 17 Index = 4 0:100 0:000 Ignoring insane frequency value 0MHz 0:100 0:000 SmbiosTable.Type17->Speed = 0MHz 0:100 0:000 SmbiosTable.Type17->Size = 0MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_C1 0:100 0:000 SmbiosTable.Type17->Vendor = <null string> 0:100 0:000 SmbiosTable.Type17->SerialNumber = <null string> 0:100 0:000 SmbiosTable.Type17->PartNumber = <null string> 0:100 0:000 Type 17 Index = 5 0:100 0:000 Ignoring insane frequency value 0MHz 0:100 0:000 SmbiosTable.Type17->Speed = 0MHz 0:100 0:000 SmbiosTable.Type17->Size = 0MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_C2 0:100 0:000 SmbiosTable.Type17->Vendor = <null string> 0:100 0:000 SmbiosTable.Type17->SerialNumber = <null string> 0:100 0:000 SmbiosTable.Type17->PartNumber = <null string> 0:100 0:000 Type 17 Index = 6 0:100 0:000 Ignoring insane frequency value 0MHz 0:100 0:000 SmbiosTable.Type17->Speed = 0MHz 0:100 0:000 SmbiosTable.Type17->Size = 0MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_D1 0:100 0:000 SmbiosTable.Type17->Vendor = <null string> 0:100 0:000 SmbiosTable.Type17->SerialNumber = <null string> 0:100 0:000 SmbiosTable.Type17->PartNumber = <null string> 0:100 0:000 Type 17 Index = 7 0:100 0:000 Ignoring insane frequency value 0MHz 0:100 0:000 SmbiosTable.Type17->Speed = 0MHz 0:100 0:000 SmbiosTable.Type17->Size = 0MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_D2 0:100 0:000 SmbiosTable.Type17->Vendor = <null string> 0:100 0:000 SmbiosTable.Type17->SerialNumber = <null string> 0:100 0:000 SmbiosTable.Type17->PartNumber = <null string> 0:100 0:000 Boot status=0 0:100 0:000 Clover revision: 3602 running on All Series 0:100 0:000 ... with board X99-A 0:100 0:000 CPU Vendor = 756E6547 Model=306F2 0:100 0:000 got cores from CPUID_1 = 0 0:100 0:000 The CPU supported turbo 0:100 0:000 BrandString = Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz 0:100 0:000 MSR 0xE2 before patch 00008401 0:100 0:000 MSR 0xE2 is locked, PM patches will be turned on 0:100 0:000 MSR 0xE4 00010414 0:100 0:000 MSR 0xCE 00080C3B_F3812100 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/0x3F/0x2 0:100 0:000 Family/ExtFamily: 0x6/0x0 0:100 0:000 MaxDiv/MinDiv: 33.0/12 0:100 0:000 Turbo: 41/41/41/41 0:100 0:000 Features: 0xBFEBFBFF 0:100 0:000 Threads: 12 0:100 0:000 Cores: 6 0:100 0:000 FSB: 100 MHz 0:100 0:000 CPU: 3300 MHz 0:100 0:000 TSC: 3300 MHz 0:100 0:000 PIS: 400 MHz 0:100 0:000 PCI (00|00:03.00) : 8086 2F08 class=060400 0:100 0:000 PCI (00|01:00.00) : 1002 679A class=030000 0:100 0:000 Found Radeon model=AMD Radeon HD 7950/8950/R9 280 0:100 0:000 PCI (00|01:00.01) : 1002 AAA0 class=040300 0:100 0:000 PCI (00|00:01.00) : 8086 2F02 class=060400 0:100 0:000 PCI (00|00:01.01) : 8086 2F03 class=060400 0:100 0:000 PCI (00|00:00.00) : 8086 2F00 class=060000 0:100 0:000 PCI (00|00:05.00) : 8086 2F28 class=088000 0:100 0:000 PCI (00|00:05.01) : 8086 2F29 class=088000 0:100 0:000 PCI (00|00:05.02) : 8086 2F2A class=088000 0:100 0:000 PCI (00|00:05.04) : 8086 2F2C class=080020 0:100 0:000 PCI (00|00:05.06) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:1F.00) : 8086 8D47 class=060100 0:100 0:000 PCI (00|00:1F.02) : 8086 8D02 class=010601 0:100 0:000 PCI (00|00:1F.03) : 8086 8D22 class=0C0500 0:100 0:000 PCI (00|00:1F.06) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:11.00) : 8086 8D7C class=FF0000 0:100 0:000 PCI (00|00:11.04) : 8086 8D62 class=010601 0:100 0:000 PCI (00|00:14.00) : 8086 8D31 class=0C0330 0:100 0:000 PCI (00|00:16.00) : 8086 8D3A class=078000 0:100 0:000 PCI (00|00:16.01) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:16.02) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:16.03) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:19.00) : 8086 15A1 class=020000 0:100 0:000 LAN 0, Vendor=8086, MMIO=FBF00000 0:100 0:000 PCI (00|00:1A.00) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:1B.00) : 8086 8D20 class=040300 0:100 0:000 PCI (00|00:1C.00) : 8086 8D10 class=060400 0:100 0:000 PCI (00|00:1C.04) : 8086 8D18 class=060400 0:100 0:000 PCI (00|05:00.00) : 1B21 1142 class=0C0330 0:100 0:000 PCI (00|00:1D.00) : FFFF FFFF class=FFFFFF 0:100 0:000 Clover load options size = 0 bytes 0:104 0:003 Using OEM config.plist at path: EFI\CLOVER\config.plist 0:104 0:000 EFI\CLOVER\config.plist loaded: Success 0:105 0:000 Found theme directory: CrispyOSX 0:106 0:001 Found theme directory: embedded 0:106 0:000 Found theme directory: magnifico 0:109 0:003 Found theme directory: random 0:110 0:000 Loading early settings 0:110 0:000 timeout set to 5 0:110 0:000 Custom boot CUSTOM_BOOT_DISABLED (0x0) 0:110 0:000 KextsToPatch: 3 requested 0:110 0:000 KextsToPatch 0: AppleUSBXHCIPCI (usb 3 limit 10.12) :: Matched OSes: 10.12.x :: Kext bin patch, data len: 4 0:110 0:000 KextsToPatch 1: IOAHCIBlockStorage (Trim) :: Matched OSes: 10.11.x,10.12.x :: Kext bin patch, data len: 11 0:110 0:000 KextsToPatch 2: AppleUSBXHCIPCI (usb 3 limit 10.11) :: Matched OSes: 10.11.x :: Kext bin patch, data len: 7 0:110 0:000 Default theme: CrispyOSX 0:110 0:000 Hiding entries with string BOOTX64.EFI 0:110 0:000 Hiding entries with string Recovery 0:110 0:000 Hiding entries with string windows 0:110 0:000 LoadDrivers() start 0:110 0:000 Loading DataHubDxe-64.efi status=Success 0:113 0:002 Loading EmuVariableUefi-64.efi status=Success 0:113 0:000 EmuVariableUefi Initialize: VariableCommonInitialize = Success, orig services stored, install gEmuVariableControlProtocolGuid = Success 0:113 0:000 Loading FSInject-64.efi status=Success 0:114 0:000 Loading OsxAptioFixDrv-64.efi status=Success 0:114 0:000 Loading OsxFatBinaryDrv-64.efi status=Success 0:114 0:000 Loading PartitionDxe-64.efi status=Success 0:114 0:000 - driver needs connecting 0:114 0:000 Loading HFSPlus.efi status=Success 0:115 0:000 - driver needs connecting 0:115 0:000 2 drivers needs connecting ... 0:115 0:000 PlatformDriverOverrideProtocol->GetDriver overriden 0:115 0:000 Partition driver loaded: CD disconnect Success 0:115 0:000 HFS+ driver loaded 0:115 0:000 Searching for invalid DiskIo BY_DRIVER connects: not found, all ok 0:854 0:738 LoadDrivers() end 0:854 0:000 EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success 0:859 0:005 SetScreenResolution: 1920x1080 - already set 0:859 0:000 Console modes reported: 4, available modes: 0:859 0:000 Mode 1: 80x25 (current mode) 0:859 0:000 Mode 2: 80x50 0:859 0:000 Mode 3: 100x31 0:859 0:000 Mode 4: 240x56 0:859 0:000 SetScreenResolution: 1920x1080 - already set 0:859 0:000 reinit: self device path=PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(1,GPT,0A2A3BFE-C3AC-4090-A736-7453B3238CE2,0x28,0x64000) 0:876 0:016 ScanSPD() start 0:876 0:000 SMBus device : 8086 8D22 class=0C0500 status=Success 0:876 0:000 SMBus CmdReg: 0x3 0:876 0:000 Scanning SMBus [8086:8D22], mmio: 0xFBF3C004, ioport: 0x580, hostc: 0x1 0:876 0:000 Slots to scan [8]... 0:877 0:001 ScanSPD() end 0:877 0:000 Get Acpi Tables List from RSDT: 0:877 0:000 Found table: FACP A M I len=132 0:877 0:000 Found table: APIC A M I len=256 0:877 0:000 Found table: FPDT A M I len=68 0:877 0:000 Found table: FIDT A M I len=156 0:877 0:000 Found table: MCFG A M I len=60 0:877 0:000 Found table: ASF! HCG len=160 0:877 0:000 Found table: SSDT SataTabl len=877 0:877 0:000 Found table: UEFI A M I len=66 0:877 0:000 Found table: HPET A M I len=56 0:877 0:000 Found table: MSCT A M I len=144 0:877 0:000 Found table: SLIT A M I len=45 0:877 0:000 Found table: SRAT A M I len=4440 0:877 0:000 Found table: WDDT A M I len=64 0:877 0:000 Found table: SSDT PmMgt len=86589 0:877 0:000 Calibrated TSC frequency =3299995851 =3299MHz 0:877 0:000 Loading main settings 0:877 0:000 USB FixOwnership: true 0:877 0:000 Dropping 3 tables 0:877 0:000 Drop table 0 signature="DMAR" (52414D44) 0:877 0:000 set table: 52414D44, 0 to drop: 0:877 0:000 Drop table 1 signature="SSDT" (54445353) table-id="Cpu0Ist" (0074734930757043) 0:877 0:000 set table: 54445353, 74734930757043 to drop: 0:877 0:000 Drop table 2 signature="SSDT" (54445353) table-id="CpuPm" (0000006D50757043) 0:877 0:000 set table: 54445353, 6D50757043 to drop: 0:877 0:000 Config set EnableC6: + 0:877 0:000 Config set ChassisType=0x6 0:877 0:000 KextsToPatch: 3 requested 0:877 0:000 KextsToPatch 0: AppleUSBXHCIPCI (usb 3 limit 10.12) :: Matched OSes: 10.12.x :: Kext bin patch, data len: 4 0:877 0:000 KextsToPatch 1: IOAHCIBlockStorage (Trim) :: Matched OSes: 10.11.x,10.12.x :: Kext bin patch, data len: 11 0:877 0:000 KextsToPatch 2: AppleUSBXHCIPCI (usb 3 limit 10.11) :: Matched OSes: 10.11.x :: Kext bin patch, data len: 7 0:878 0:000 found 13 volumes with blockIO 0:878 0:000 0. Volume: 0:878 0:000 PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0) 0:880 0:002 1. Volume: 0:880 0:000 PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0) 0:880 0:000 found optical drive 0:880 0:000 2. Volume: 0:880 0:000 PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(1,GPT,8561E08C-283B-4190-A77A-5458F75F10B1,0x28,0x64000) 0:880 0:000 Result of bootcode detection: bootable unknown (legacy) 0:880 0:000 3. Volume: 0:880 0:000 PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(2,GPT,E89D7E8F-D2D8-4982-9E33-D6A2B04576BF,0x64028,0xDDFAC40) 0:881 0:000 4. Volume: 0:881 0:000 PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(3,GPT,CA007C04-73BE-4F1A-B3A1-F77F1F47B088,0xDE5EC68,0x135F20) 0:881 0:000 hiding this volume 0:881 0:000 5. Volume: 0:881 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0) 0:882 0:000 6. Volume: 0:882 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0) 0:883 0:000 7. Volume: 0:883 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0)\HD(1,GPT,B1650157-FE7D-492F-AC4C-7B333B79F801,0x28,0x64000) 0:883 0:000 Result of bootcode detection: bootable unknown (legacy) 0:883 0:000 8. Volume: 0:883 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0)\HD(2,GPT,9128246A-7393-40AC-BB96-75465F7DE11D,0x64028,0xA30723F8) 0:884 0:000 9. Volume: 0:884 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0)\HD(3,GPT,63C4321E-4CF1-4831-93BC-0B8AC34F5751,0xA3116420,0x45CB2468) 0:885 0:000 10. Volume: 0:885 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(1,GPT,0A2A3BFE-C3AC-4090-A736-7453B3238CE2,0x28,0x64000) 0:885 0:000 Result of bootcode detection: bootable unknown (legacy) 0:885 0:000 This is SelfVolume !! 0:885 0:000 11. Volume: 0:885 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(2,GPT,F9EB2C88-4756-4B60-B231-6CDC92DABA9E,0x64028,0x1BD8A540) 0:886 0:000 12. Volume: 0:886 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(3,GPT,69789CCA-F8B6-4C40-AE30-89A595B6863B,0x1BDEE568,0x135F20) 0:887 0:000 hiding this volume 0:889 0:002 Loading nvram.plist from Vol 'El Capitan' - loaded, size=6325 0:891 0:001 PutNvramPlistToRtVars ... 0:891 0:000 Adding Key: Clover.BackupDirOnDestVol: Size = 3, Data: 59 65 73 0:891 0:000 Adding Key: Clover.KeepBackupLimit: Size = 2, Data: 31 30 0:891 0:000 Adding Key: Clover.LogEveryBoot: Size = 2, Data: 31 30 0:891 0:000 Adding Key: Clover.LogLineCount: Size = 3, Data: 31 30 30 0:891 0:000 Adding Key: Clover.MountEFI: Size = 3, Data: 59 65 73 0:891 0:000 Adding Key: Clover.Theme: Size = 9, Data: 43 72 69 73 70 79 4F 53 58 0:891 0:000 Skipping EmuVariableUefiPresent 0:891 0:000 Skipping OsxAptioFixDrv-RelocBase 0:891 0:000 Adding Key: SystemAudioVolume: Size = 1, Data: 80 0:891 0:000 Adding Key: SystemAudioVolumeDB: Size = 1, Data: F0 0:891 0:000 Adding Key: bootercfg: Size = 2, Data: 28 00 0:891 0:000 Adding Key: csr-active-config: Size = 4, Data: 67 00 00 00 0:891 0:000 Adding Key: efi-apple-payload0: Size = 416, Data: 3C 61 72 72 61 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 50 72 6F 76 69 64 65 72 43 6C 61 73 73 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 49 4F 4D 65 64 69 61 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 49 4F 50 72 6F 70 65 72 74 79 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 55 55 49 44 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 30 41 32 41 33 42 46 45 2D 43 33 41 43 2D 34 30 39 30 2D 41 37 33 36 2D 37 34 35 33 42 33 32 33 38 43 45 32 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 64 69 63 74 3E 3C 6B 65 79 3E 42 4C 4C 61 73 74 42 53 44 4E 61 6D 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 64 69 73 6B 30 73 31 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 45 46 49 44 65 76 69 63 65 50 61 74 68 54 79 70 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 4D 65 64 69 61 46 69 6C 65 50 61 74 68 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 50 61 74 68 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 5C 45 46 49 5C 41 50 50 4C 45 5C 55 50 44 41 54 45 52 53 5C 4D 55 4C 54 49 55 50 44 41 54 45 52 5C 53 6D 63 46 6C 61 73 68 65 72 2E 65 66 69 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 61 72 72 61 79 3E 0:891 0:000 Adding Key: efi-apple-payload0-data: Size = 174, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 04 11 03 12 0A 00 03 00 00 00 00 00 04 01 2A 00 01 00 00 00 28 00 00 00 00 00 00 00 00 40 06 00 00 00 00 00 FE 3B 2A 0A AC C3 90 40 A7 36 74 53 B3 23 8C E2 02 02 04 04 64 00 5C 00 45 00 46 00 49 00 5C 00 41 00 50 00 50 00 4C 00 45 00 5C 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 53 00 5C 00 4D 00 55 00 4C 00 54 00 49 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 5C 00 53 00 6D 00 63 00 46 00 6C 00 61 00 73 00 68 00 65 00 72 00 2E 00 65 00 66 00 69 00 00 00 7F FF 04 00 0:891 0:000 Adding Key: efi-apple-payload1: Size = 418, Data: 3C 61 72 72 61 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 50 72 6F 76 69 64 65 72 43 6C 61 73 73 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 49 4F 4D 65 64 69 61 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 49 4F 50 72 6F 70 65 72 74 79 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 55 55 49 44 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 30 41 32 41 33 42 46 45 2D 43 33 41 43 2D 34 30 39 30 2D 41 37 33 36 2D 37 34 35 33 42 33 32 33 38 43 45 32 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 64 69 63 74 3E 3C 6B 65 79 3E 42 4C 4C 61 73 74 42 53 44 4E 61 6D 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 64 69 73 6B 30 73 31 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 45 46 49 44 65 76 69 63 65 50 61 74 68 54 79 70 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 4D 65 64 69 61 46 69 6C 65 50 61 74 68 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 50 61 74 68 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 5C 45 46 49 5C 41 50 50 4C 45 5C 55 50 44 41 54 45 52 53 5C 4D 55 4C 54 49 55 50 44 41 54 45 52 5C 66 6C 61 73 68 65 72 5F 62 61 73 65 2E 73 6D 63 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 61 72 72 61 79 3E 0:891 0:000 Adding Key: efi-apple-payload1-data: Size = 178, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 04 11 03 12 0A 00 03 00 00 00 00 00 04 01 2A 00 01 00 00 00 28 00 00 00 00 00 00 00 00 40 06 00 00 00 00 00 FE 3B 2A 0A AC C3 90 40 A7 36 74 53 B3 23 8C E2 02 02 04 04 68 00 5C 00 45 00 46 00 49 00 5C 00 41 00 50 00 50 00 4C 00 45 00 5C 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 53 00 5C 00 4D 00 55 00 4C 00 54 00 49 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 5C 00 66 00 6C 00 61 00 73 00 68 00 65 00 72 00 5F 00 62 00 61 00 73 00 65 00 2E 00 73 00 6D 00 63 00 00 00 7F FF 04 00 0:891 0:000 Adding Key: efi-apple-payload2: Size = 420, Data: 3C 61 72 72 61 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 50 72 6F 76 69 64 65 72 43 6C 61 73 73 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 49 4F 4D 65 64 69 61 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 49 4F 50 72 6F 70 65 72 74 79 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 55 55 49 44 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 30 41 32 41 33 42 46 45 2D 43 33 41 43 2D 34 30 39 30 2D 41 37 33 36 2D 37 34 35 33 42 33 32 33 38 43 45 32 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 64 69 63 74 3E 3C 6B 65 79 3E 42 4C 4C 61 73 74 42 53 44 4E 61 6D 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 64 69 73 6B 30 73 31 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 45 46 49 44 65 76 69 63 65 50 61 74 68 54 79 70 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 4D 65 64 69 61 46 69 6C 65 50 61 74 68 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 50 61 74 68 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 5C 45 46 49 5C 41 50 50 4C 45 5C 55 50 44 41 54 45 52 53 5C 4D 55 4C 54 49 55 50 44 41 54 45 52 5C 66 6C 61 73 68 65 72 5F 75 70 64 61 74 65 2E 73 6D 63 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 61 72 72 61 79 3E 0:891 0:000 Adding Key: efi-apple-payload2-data: Size = 182, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 04 11 03 12 0A 00 03 00 00 00 00 00 04 01 2A 00 01 00 00 00 28 00 00 00 00 00 00 00 00 40 06 00 00 00 00 00 FE 3B 2A 0A AC C3 90 40 A7 36 74 53 B3 23 8C E2 02 02 04 04 6C 00 5C 00 45 00 46 00 49 00 5C 00 41 00 50 00 50 00 4C 00 45 00 5C 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 53 00 5C 00 4D 00 55 00 4C 00 54 00 49 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 5C 00 66 00 6C 00 61 00 73 00 68 00 65 00 72 00 5F 00 75 00 70 00 64 00 61 00 74 00 65 00 2E 00 73 00 6D 00 63 00 00 00 7F FF 04 00 0:891 0:000 Adding Key: efi-apple-payload3: Size = 426, Data: 3C 61 72 72 61 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 50 72 6F 76 69 64 65 72 43 6C 61 73 73 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 49 4F 4D 65 64 69 61 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 49 4F 50 72 6F 70 65 72 74 79 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 55 55 49 44 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 30 41 32 41 33 42 46 45 2D 43 33 41 43 2D 34 30 39 30 2D 41 37 33 36 2D 37 34 35 33 42 33 32 33 38 43 45 32 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 64 69 63 74 3E 3C 6B 65 79 3E 42 4C 4C 61 73 74 42 53 44 4E 61 6D 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 64 69 73 6B 30 73 31 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 45 46 49 44 65 76 69 63 65 50 61 74 68 54 79 70 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 4D 65 64 69 61 46 69 6C 65 50 61 74 68 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 50 61 74 68 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 5C 45 46 49 5C 41 50 50 4C 45 5C 55 50 44 41 54 45 52 53 5C 4D 55 4C 54 49 55 50 44 41 54 45 52 5C 4D 61 63 2D 46 36 30 44 45 42 38 31 46 46 33 30 41 43 46 36 2E 65 70 6D 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 61 72 72 61 79 3E 0:891 0:000 Adding Key: efi-apple-payload3-data: Size = 194, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 04 11 03 12 0A 00 03 00 00 00 00 00 04 01 2A 00 01 00 00 00 28 00 00 00 00 00 00 00 00 40 06 00 00 00 00 00 FE 3B 2A 0A AC C3 90 40 A7 36 74 53 B3 23 8C E2 02 02 04 04 78 00 5C 00 45 00 46 00 49 00 5C 00 41 00 50 00 50 00 4C 00 45 00 5C 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 53 00 5C 00 4D 00 55 00 4C 00 54 00 49 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 5C 00 4D 00 61 00 63 00 2D 00 46 00 36 00 30 00 44 00 45 00 42 00 38 00 31 00 46 00 46 00 33 00 30 00 41 00 43 00 46 00 36 00 2E 00 65 00 70 00 6D 00 00 00 7F FF 04 00 0:891 0:000 Adding Key: fakesmc-key-CLKH-{clh: Size = 8, Data: 00 00 70 80 00 01 19 40 0:891 0:000 Adding Key: fakesmc-key-CLKT-ui32: Size = 4, Data: 00 00 B0 A9 0:891 0:000 Adding Key: fakesmc-key-MSDW-ui8: Size = 1, Data: 01 0:891 0:000 Adding Key: fakesmc-key-NATJ-ui8: Size = 1, Data: 00 0:891 0:000 Adding Key: fakesmc-key-NATi-ui16: Size = 2, Data: 00 00 0:891 0:000 Adding Key: fakesmc-key-NTOK-ui8: Size = 1, Data: 01 0:891 0:000 Adding Key: fmm-computer-name: Size = 7, Data: 4D 61 63 20 50 72 6F 0:891 0:000 Adding Key: fmm-mobileme-token-FMM: Size = 615, Data: 62 70 6C 69 73 74 30 30 DA 01 02 03 04 05 06 07 08 09 0A 0B 0C 17 18 19 1A 1B 1C 1D 24 56 75 73 65 72 69 64 5F 10 13 64 61 74 61 63 6C 61 73 73 50 72 6F 70 65 72 74 69 65 73 59 61 75 74 68 54 6F 6B 65 6E 58 70 65 72 73 6F 6E 49 44 58 75 73 65 72 6E 61 6D 65 57 61 64 64 54 69 6D 65 5F 10 12 65 6E 61 62 6C 65 64 44 61 74 61 63 6C 61 73 73 65 73 54 67 75 69 64 58 75 73 65 72 49 6E 66 6F 5F 10 11 6F 73 55 73 65 72 44 69 73 61 70 70 65 61 72 65 64 11 01 F5 D1 0D 0E 5F 10 21 63 6F 6D 2E 61 70 70 6C 65 2E 44 61 74 61 63 6C 61 73 73 2E 44 65 76 69 63 65 4C 6F 63 61 74 6F 72 D4 0F 10 11 12 13 14 15 16 56 61 70 73 45 6E 76 58 68 6F 73 74 6E 61 6D 65 5D 61 75 74 68 4D 65 63 68 61 6E 69 73 6D 56 73 63 68 65 6D 65 5A 50 72 6F 64 75 63 74 69 6F 6E 5F 10 13 70 31 37 2D 66 6D 69 70 2E 69 63 6C 6F 75 64 2E 63 6F 6D 55 74 6F 6B 65 6E 55 68 74 74 70 73 5F 10 28 41 51 41 41 41 41 42 58 56 6E 48 7A 6A 32 37 4B 63 31 73 71 62 41 65 61 36 6B 50 37 73 47 6A 5A 76 64 57 58 76 66 51 7E 5A 31 30 30 30 38 38 36 37 36 30 5F 10 0F 68 6F 67 6E 6F 73 65 40 66 72 65 65 2E 66 72 23 41 D5 D5 9C 82 2B CC 8A A1 0D 5F 10 24 39 44 37 41 42 38 30 31 2D 45 43 45 39 2D 34 30 46 44 2D 41 38 39 42 2D 42 31 30 39 30 44 45 44 42 45 37 37 D3 1E 1F 20 21 22 23 5F 10 15 49 6E 55 73 65 4F 77 6E 65 72 44 69 73 70 6C 61 79 4E 61 6D 65 5F 10 13 49 6E 55 73 65 4F 77 6E 65 72 46 69 72 73 74 4E 61 6D 65 5F 10 12 49 6E 55 73 65 4F 77 6E 65 72 4C 61 73 74 4E 61 6D 65 5E 46 72 65 64 65 72 69 63 20 4C 6F 62 72 79 58 46 72 65 64 65 72 69 63 55 4C 6F 62 72 79 09 00 08 00 1D 00 24 00 3A 00 44 00 4D 00 56 00 5E 00 73 00 78 00 81 00 95 00 98 00 9B 00 BF 00 C8 00 CF 00 D8 00 E6 00 ED 00 F8 01 0E 01 14 01 1A 01 45 01 50 01 62 01 6B 01 6D 01 94 01 9B 01 B3 01 C9 01 DE 01 ED 01 F6 01 FC 00 00 00 00 00 00 02 01 00 00 00 00 00 00 00 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 FD 0:891 0:000 Adding Key: install-product-url: Size = 73, Data: 78 2D 6F 73 70 72 6F 64 75 63 74 3A 2F 2F 41 37 38 33 32 43 46 44 2D 35 39 43 35 2D 33 45 46 32 2D 41 39 35 32 2D 44 46 38 37 43 33 44 33 44 33 42 43 2F 6D 61 63 4F 53 25 32 30 49 6E 73 74 61 6C 6C 25 32 30 44 61 74 61 0:891 0:000 Adding Key: prev-lang:kbd: Size = 4, Data: 66 72 3A 31 0:891 0:000 Adding Key: rc_imgsrc_info: Size = 92, Data: 62 70 6C 69 73 74 30 30 A1 01 D1 02 03 5F 10 24 41 37 38 33 32 43 46 44 2D 35 39 43 35 2D 33 45 46 32 2D 41 39 35 32 2D 44 46 38 37 43 33 44 33 44 33 42 43 53 75 73 62 08 0A 0D 34 00 00 00 00 00 00 01 01 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 38 0:891 0:000 Adding Key: security-mode: String: Size = 4, Val = 'none' 0:891 0:000 Using theme 'CrispyOSX' (EFI\CLOVER\themes\CrispyOSX) 0:891 0:000 theme CrispyOSX defined in NVRAM found and theme.plist parsed 0:891 0:000 OS main and drive as badge 0:893 0:002 Choosing theme CrispyOSX 0:893 0:000 Custom entries start 0:893 0:000 Custom entries finish 0:893 0:000 Scanning loaders... 0:893 0:000 0: 'Whole Disc Boot' no file system 0:893 0:000 1: 'Whole Disc Boot' no file system 0:893 0:000 2: 'EFI' 0:902 0:008 3: 'Sierra' 0:904 0:001 AddLoaderEntry for Volume Name=Sierra 0:905 0:001 Check if volume Is Hibernated: 0:905 0:000 Check sleep image 'by signature': 0:908 0:002 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Not Found 0:908 0:000 using default sleep image name = \private\var\vm\sleepimage 0:909 0:001 sleepimage not found -> Not Found 0:909 0:000 hibernated: no - sign 0:910 0:000 Icon 17 (icons\vol_internal_hfs.icns) not found 0:910 0:000 Theme path EFI\CLOVER\themes\CrispyOSX, ThemeDir=C780E620 0:918 0:007 4: 'Recovery HD' hidden 0:918 0:000 5: 'Whole Disc Boot' no file system 0:918 0:000 6: 'Whole Disc Boot' no file system 0:918 0:000 7: 'EFI' 0:924 0:006 8: 'Stockage' 0:932 0:007 9: 'Time Machine' 0:940 0:007 10: 'EFI' 0:947 0:006 11: 'El Capitan' 0:950 0:003 AddLoaderEntry for Volume Name=El Capitan 0:953 0:002 Check if volume Is Hibernated: 0:953 0:000 Check sleep image 'by signature': 0:958 0:005 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success 0:958 0:000 SleepImage name from pref: ImageVolume = 'El Capitan', ImageName = '\private\var\vm\sleepimage' 0:960 0:001 sleepimage not found -> Not Found 0:960 0:000 hibernated: no - sign 0:969 0:008 12: 'Recovery HD' hidden 0:969 0:000 Custom legacy start 0:969 0:000 Custom legacy end 0:969 0:000 Scanning legacy ... 0:969 0:000 0: 'Whole Disc Boot' (legacy) not legacy 0:969 0:000 1: 'Whole Disc Boot' (legacy) not legacy 0:969 0:000 2: 'EFI' (legacy) not legacy 0:969 0:000 3: 'Sierra' (legacy) not legacy 0:969 0:000 4: 'Recovery HD' (legacy) not legacy 0:969 0:000 5: 'Whole Disc Boot' (legacy) not legacy 0:969 0:000 6: 'Whole Disc Boot' (legacy) not legacy 0:969 0:000 7: 'EFI' (legacy) not legacy 0:969 0:000 8: 'Stockage' (legacy) not legacy 0:969 0:000 9: 'Time Machine' (legacy) not legacy 0:969 0:000 10: 'EFI' (legacy) not legacy 0:969 0:000 11: 'El Capitan' (legacy) not legacy 0:969 0:000 12: 'Recovery HD' (legacy) not legacy 0:969 0:000 Custom tool start 0:969 0:000 Custom tool end 0:969 0:000 found tool \EFI\CLOVER\tools\Shell64U.efi 0:969 0:000 Checking EFI partition Volume 2 for Clover 0:969 0:000 Checking EFI partition Volume 7 for Clover 0:969 0:000 Checking EFI partition Volume 10 for Clover 0:969 0:000 Found Clover 0:970 0:000 EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored 0:970 0:000 EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success 0:976 0:005 GetEfiBootDeviceFromNvram: efi-boot-device-data not found 0:976 0:000 EfiBootVolume not found 0:976 0:000 found entry 1. 'Boot Mac OS X from El Capitan', Volume 'El Capitan', DevicePath 'PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(2,GPT,F9EB2C88-4756-4B60-B231-6CDC92DABA9E,0x64028,0x1BD8A540)\System\Library\CoreServices\boot.efi' 0:976 0:000 EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored 0:976 0:000 DefaultIndex=1 and MainMenu.EntryCount=8 2:073 1:096 Found Mouse device: 2:073 0:000 GUI ready 8:077 6:003 StartLoader() start 8:077 0:000 Entry->Settings: <null string> 8:077 0:000 Finally: Bus=99999kHz CPU=3300MHz 8:077 0:000 Loading boot.efi status=Success 8:165 0:087 GetOSVersion: 10.11.5 8:165 0:000 Filtering KextPatches: 8:165 0:000 - Patch [0] "AppleUSBXHCIPCI" :: KextPatch :: [OS: 10.11.5 | MatchOS: 10.12.x] ==> not allowed 8:165 0:000 - Patch [1] "IOAHCIBlockStorage" :: KextPatch :: [OS: 10.11.5 | MatchOS: 10.11.x,10.12.x ] ==> allowed 8:165 0:000 - Patch [2] "AppleUSBXHCIPCI" :: KextPatch :: [OS: 10.11.5 | MatchOS: 10.11.x] ==> allowed 8:165 0:000 EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success 8:171 0:005 insert table 9 for dev 0:0 8:171 0:000 insert table 9 for dev 0:1 8:171 0:000 insert table 9 for dev 19:0 8:171 0:000 Trusting SMBIOS... 8:171 0:000 Detected alternating SMBIOS channel banks 8:171 0:000 Channels: 4 8:171 0:000 Interleave: 0 2 4 6 1 3 5 7 8 10 12 14 9 11 13 15 16 18 20 22 17 19 21 23 8:171 0:000 partNum unknown 8:171 0:000 SMBIOS Type 17 Index = 0 => 0 0: 8:171 0:000 DIMM1 2133MHz 4096MB 8:171 0:000 partNum unknown 8:171 0:000 SMBIOS Type 17 Index = 1 => 1 2: 8:171 0:000 DIMM2 2133MHz 4096MB 8:171 0:000 partNum unknown 8:171 0:000 SMBIOS Type 17 Index = 2 => 2 4: 8:171 0:000 DIMM3 2133MHz 4096MB 8:171 0:000 partNum unknown 8:171 0:000 SMBIOS Type 17 Index = 3 => 3 6: 8:171 0:000 DIMM4 2133MHz 4096MB 8:171 0:000 SMBIOS Type 17 Index = 4 => 4 1: 8:171 0:000 DIMM5 EMPTY 8:171 0:000 SMBIOS Type 17 Index = 5 => 5 3: 8:171 0:000 DIMM6 EMPTY 8:171 0:000 SMBIOS Type 17 Index = 6 => 6 5: 8:171 0:000 DIMM7 EMPTY 8:171 0:000 SMBIOS Type 17 Index = 7 => 7 7: 8:171 0:000 DIMM8 EMPTY 8:171 0:000 mTotalSystemMemory = 16384 8:171 0:000 NumberOfMemoryDevices = 8 8:171 0:000 Type20[0]->End = 0x3FFFFF, Type17[0] = 0x1000 8:171 0:000 Type20[1]->End = 0x7FFFFF, Type17[1] = 0x3000 8:171 0:000 Type20[2]->End = 0xBFFFFF, Type17[2] = 0x6000 8:171 0:000 Type20[3]->End = 0xFFFFFF, Type17[3] = 0xA000 8:171 0:000 Table 131 is present, CPUType=10 8:171 0:000 Change to: 507 8:171 0:000 RSDT 0xCB3BB028 8:171 0:000 FADT from RSDT: 0xCB3BB130 8:171 0:000 XSDT 0xCB3BB090 8:171 0:000 FADT from XSDT: 0xCB3F1130 8:171 0:000 Xsdt reallocation done 8:171 0:000 old FADT length=10C 8:171 0:000 Apply DsdtFixMask=0x00000000 old way 8:171 0:000 drop _DSM mask=0x0000 8:171 0:000 ========= Auto patch DSDT Starting ======== 8:171 0:000 VideoCard devID=0x679A1002 8:171 0:000 DisplayADR1[0] = 0x30000, DisplayADR2[0] = 0x0 8:171 0:000 USBADR[0] = 0x140000 and PCIe = 0xFFFE 8:171 0:000 USBADR[1] = 0x1C0004 and PCIe = 0x0 8:171 0:000 first CPU found at 2C0B offset 2C0F 8:171 0:000 device candidate at 2B72 8:171 0:000 device inserted in acpi_cpu_score SCK0 8:171 0:000 score candidate at 2986 8:171 0:000 score inserted in acpi_cpu_score _SB_SCK0 8:171 0:000 Found ACPI CPU: CP00 And CP01 And CP02 And CP03 And CP04 And CP05 And CP06 And CP07 And CP08 And CP09 And CP0A And CP0B And CP0C And CP0D And CP0E And CP0F And CP10 And CP11 And CP12 And CP13 And CP14 And CP15 And CP16 And CP17 And CP18 And CP19 And CP1A And CP1B And CP1C And CP1D And CP1E And CP1F within the score: _SB_SCK0 8:171 0:000 Found PCIROOTUID = 0 8:172 0:000 ========= Auto patch DSDT Finished ======== 8:172 0:000 Patch table: SSDT SataTabl 8:172 0:000 SSDT len = 0x36D 8:172 0:000 Patch table: SSDT PmMgt 8:172 0:000 SSDT len = 0x1523D 8:172 0:000 Drop tables from Xsdt, SIGN=XXXX TableID= Length=0 8:172 0:000 Xsdt has tables count=14 8:172 0:000 corrected XSDT length=148 8:172 0:000 CPUBase=0 and ApicCPUBase=0 ApicCPUNum=12 8:172 0:000 Maximum control=0x21 8:172 0:000 Turbo control=0x29 8:172 0:000 P-States: min 0xC, max 0x29 8:172 0:000 SSDT with CPU P-States generated successfully 8:172 0:000 SSDT with CPU C-States generated successfully 8:172 0:000 EdidDiscovered size=128 8:172 0:000 00 | 00 FF FF FF FF FF FF 00 26 CD 1D 56 01 01 01 01 8:172 0:000 16 | 06 17 01 03 81 33 1D 78 2A E2 95 A2 55 4F 9F 26 8:172 0:000 32 | 11 50 54 BF EF 80 B3 00 A9 40 95 00 81 80 95 0F 8:172 0:000 48 | 71 4F 01 01 01 01 02 3A 80 18 71 38 2D 40 58 2C 8:172 0:000 64 | 45 00 FE 1F 11 00 00 1E 00 00 00 FF 00 31 31 31 8:172 0:000 80 | 33 38 33 30 36 32 31 32 33 35 00 00 00 FD 00 37 8:172 0:000 96 | 4C 1E 51 11 00 0A 20 20 20 20 20 20 00 00 00 FC 8:172 0:000 112 | 00 50 4C 32 33 37 37 0A 20 20 20 20 20 20 01 77 8:172 0:000 ATI injection not set 8:172 0:000 RCBA access disabled; trying to enable 8:172 0:000 USB Controller [8086:8D31] :: PciRoot(0x0)\Pci(0x14,0x0) 8:172 0:000 LAN Controller [8086:15A1] :: PciRoot(0x0)\Pci(0x19,0x0) 8:172 0:000 HDA Controller [8086:8D20] :: PciRoot(0x0)\Pci(0x1B,0x0) => detected codec: 10EC:0900 8:172 0:000 USB Controller [1B21:1142] :: PciRoot(0x0)\Pci(0x1C,0x4)\Pci(0x0,0x0) 8:172 0:000 stringlength = 1640 8:172 0:000 CurrentMode: Width=1920 Height=1080 8:172 0:000 Beginning FSInjection FSInjectionInstall ... - Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: C87E1298 FSInjectionInstall ... - Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: C87E1298 8:173 0:000 Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\Other 8:173 0:000 Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\10.11 8:175 0:002 Extra kext: EFI\CLOVER\kexts\10.11\FakeSMC.kext 8:177 0:002 Extra PlugIn kext: EFI\CLOVER\kexts\10.11\FakeSMC.kext\Contents\PlugIns\FakeSMC_ACPISensors.kext 8:179 0:001 Extra PlugIn kext: EFI\CLOVER\kexts\10.11\FakeSMC.kext\Contents\PlugIns\FakeSMC_CPUSensors.kext 8:179 0:000 Extra PlugIn kext: EFI\CLOVER\kexts\10.11\FakeSMC.kext\Contents\PlugIns\FakeSMC_GPUSensors.kext 8:181 0:001 Extra PlugIn kext: EFI\CLOVER\kexts\10.11\FakeSMC.kext\Contents\PlugIns\FakeSMC_LPCSensors.kext 8:186 0:005 Extra kext: EFI\CLOVER\kexts\10.11\USB_Injector.kext 8:189 0:002 Removed efi-boot-device-data variable: Not Found 8:189 0:000 Custom boot is disabled 8:189 0:000 Closing log Appuyer sur une touche pour revenir au menu Press any key to return to menu Last login: Sat Jul 9 15:33:38 on console Mac-Pro-de-Fljagd:~ fljagd$ /Users/fljagd/Desktop/bdmesg ; exit; 0:100 0:100 MemLog inited, TSC freq: 3299991510 0:100 0:000 0:100 0:000 Now is 9.7.2016, 13:33:26 (GMT) 0:100 0:000 Starting Clover rev 3602 on American Megatrends EFI 0:100 0:000 Build with: [Args: ./ebuild.sh -mc --no-usb -t XCODE5 | Command: build -D DISABLE_USB_SUPPORT -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE5 -n 13 | OS: 10.11.5 | XCODE: 7.3.1] 0:100 0:000 SelfDevicePath=PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(1,GPT,0A2A3BFE-C3AC-4090-A736-7453B3238CE2,0x28,0x64000) @C87E1198 0:100 0:000 SelfDirPath = \EFI\BOOT 0:100 0:000 Total Memory Slots Count = 8 0:100 0:000 Type 17 Index = 0 0:100 0:000 SmbiosTable.Type17->Speed = 2133MHz 0:100 0:000 SmbiosTable.Type17->Size = 4096MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_A1 0:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Type 17 Index = 1 0:100 0:000 SmbiosTable.Type17->Speed = 2133MHz 0:100 0:000 SmbiosTable.Type17->Size = 4096MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_A2 0:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Type 17 Index = 2 0:100 0:000 SmbiosTable.Type17->Speed = 2133MHz 0:100 0:000 SmbiosTable.Type17->Size = 4096MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_B1 0:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Type 17 Index = 3 0:100 0:000 SmbiosTable.Type17->Speed = 2133MHz 0:100 0:000 SmbiosTable.Type17->Size = 4096MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_B2 0:100 0:000 SmbiosTable.Type17->Vendor = 0:100 0:000 SmbiosTable.Type17->SerialNumber = 0:100 0:000 SmbiosTable.Type17->PartNumber = 0:100 0:000 Type 17 Index = 4 0:100 0:000 Ignoring insane frequency value 0MHz 0:100 0:000 SmbiosTable.Type17->Speed = 0MHz 0:100 0:000 SmbiosTable.Type17->Size = 0MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_C1 0:100 0:000 SmbiosTable.Type17->Vendor = <null string> 0:100 0:000 SmbiosTable.Type17->SerialNumber = <null string> 0:100 0:000 SmbiosTable.Type17->PartNumber = <null string> 0:100 0:000 Type 17 Index = 5 0:100 0:000 Ignoring insane frequency value 0MHz 0:100 0:000 SmbiosTable.Type17->Speed = 0MHz 0:100 0:000 SmbiosTable.Type17->Size = 0MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_C2 0:100 0:000 SmbiosTable.Type17->Vendor = <null string> 0:100 0:000 SmbiosTable.Type17->SerialNumber = <null string> 0:100 0:000 SmbiosTable.Type17->PartNumber = <null string> 0:100 0:000 Type 17 Index = 6 0:100 0:000 Ignoring insane frequency value 0MHz 0:100 0:000 SmbiosTable.Type17->Speed = 0MHz 0:100 0:000 SmbiosTable.Type17->Size = 0MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_D1 0:100 0:000 SmbiosTable.Type17->Vendor = <null string> 0:100 0:000 SmbiosTable.Type17->SerialNumber = <null string> 0:100 0:000 SmbiosTable.Type17->PartNumber = <null string> 0:100 0:000 Type 17 Index = 7 0:100 0:000 Ignoring insane frequency value 0MHz 0:100 0:000 SmbiosTable.Type17->Speed = 0MHz 0:100 0:000 SmbiosTable.Type17->Size = 0MB 0:100 0:000 SmbiosTable.Type17->Bank/Device = NODE 1 DIMM_D2 0:100 0:000 SmbiosTable.Type17->Vendor = <null string> 0:100 0:000 SmbiosTable.Type17->SerialNumber = <null string> 0:100 0:000 SmbiosTable.Type17->PartNumber = <null string> 0:100 0:000 Boot status=0 0:100 0:000 Clover revision: 3602 running on All Series 0:100 0:000 ... with board X99-A 0:100 0:000 CPU Vendor = 756E6547 Model=306F2 0:100 0:000 got cores from CPUID_1 = 0 0:100 0:000 The CPU supported turbo 0:100 0:000 BrandString = Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz 0:100 0:000 MSR 0xE2 before patch 00008401 0:100 0:000 MSR 0xE2 is locked, PM patches will be turned on 0:100 0:000 MSR 0xE4 00010414 0:100 0:000 MSR 0xCE 00080C3B_F3812100 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/0x3F/0x2 0:100 0:000 Family/ExtFamily: 0x6/0x0 0:100 0:000 MaxDiv/MinDiv: 33.0/12 0:100 0:000 Turbo: 41/41/41/41 0:100 0:000 Features: 0xBFEBFBFF 0:100 0:000 Threads: 12 0:100 0:000 Cores: 6 0:100 0:000 FSB: 100 MHz 0:100 0:000 CPU: 3300 MHz 0:100 0:000 TSC: 3300 MHz 0:100 0:000 PIS: 400 MHz 0:100 0:000 PCI (00|00:03.00) : 8086 2F08 class=060400 0:100 0:000 PCI (00|01:00.00) : 1002 679A class=030000 0:100 0:000 Found Radeon model=AMD Radeon HD 7950/8950/R9 280 0:100 0:000 PCI (00|01:00.01) : 1002 AAA0 class=040300 0:100 0:000 PCI (00|00:01.00) : 8086 2F02 class=060400 0:100 0:000 PCI (00|00:01.01) : 8086 2F03 class=060400 0:100 0:000 PCI (00|00:00.00) : 8086 2F00 class=060000 0:100 0:000 PCI (00|00:05.00) : 8086 2F28 class=088000 0:100 0:000 PCI (00|00:05.01) : 8086 2F29 class=088000 0:100 0:000 PCI (00|00:05.02) : 8086 2F2A class=088000 0:100 0:000 PCI (00|00:05.04) : 8086 2F2C class=080020 0:100 0:000 PCI (00|00:05.06) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:1F.00) : 8086 8D47 class=060100 0:100 0:000 PCI (00|00:1F.02) : 8086 8D02 class=010601 0:100 0:000 PCI (00|00:1F.03) : 8086 8D22 class=0C0500 0:100 0:000 PCI (00|00:1F.06) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:11.00) : 8086 8D7C class=FF0000 0:100 0:000 PCI (00|00:11.04) : 8086 8D62 class=010601 0:100 0:000 PCI (00|00:14.00) : 8086 8D31 class=0C0330 0:100 0:000 PCI (00|00:16.00) : 8086 8D3A class=078000 0:100 0:000 PCI (00|00:16.01) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:16.02) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:16.03) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:19.00) : 8086 15A1 class=020000 0:100 0:000 LAN 0, Vendor=8086, MMIO=FBF00000 0:100 0:000 PCI (00|00:1A.00) : FFFF FFFF class=FFFFFF 0:100 0:000 PCI (00|00:1B.00) : 8086 8D20 class=040300 0:100 0:000 PCI (00|00:1C.00) : 8086 8D10 class=060400 0:100 0:000 PCI (00|00:1C.04) : 8086 8D18 class=060400 0:100 0:000 PCI (00|05:00.00) : 1B21 1142 class=0C0330 0:100 0:000 PCI (00|00:1D.00) : FFFF FFFF class=FFFFFF 0:100 0:000 Clover load options size = 0 bytes 0:103 0:003 Using OEM config.plist at path: EFI\CLOVER\config.plist 0:103 0:000 EFI\CLOVER\config.plist loaded: Success 0:104 0:000 Found theme directory: CrispyOSX 0:105 0:000 Found theme directory: embedded 0:105 0:000 Found theme directory: magnifico 0:108 0:003 Found theme directory: random 0:109 0:000 Loading early settings 0:109 0:000 timeout set to 5 0:109 0:000 Custom boot CUSTOM_BOOT_DISABLED (0x0) 0:109 0:000 KextsToPatch: 3 requested 0:109 0:000 KextsToPatch 0: AppleUSBXHCIPCI (usb 3 limit 10.12) :: Matched OSes: 10.12.x :: Kext bin patch, data len: 4 0:109 0:000 KextsToPatch 1: IOAHCIBlockStorage (Trim) :: Matched OSes: 10.11.x,10.12.x :: Kext bin patch, data len: 11 0:109 0:000 KextsToPatch 2: AppleUSBXHCIPCI (usb 3 limit 10.11) :: Matched OSes: 10.11.x :: Kext bin patch, data len: 7 0:109 0:000 Default theme: CrispyOSX 0:109 0:000 Hiding entries with string BOOTX64.EFI 0:109 0:000 Hiding entries with string Recovery 0:109 0:000 Hiding entries with string windows 0:109 0:000 LoadDrivers() start 0:109 0:000 Loading DataHubDxe-64.efi status=Success 0:111 0:002 Loading EmuVariableUefi-64.efi status=Success 0:112 0:000 EmuVariableUefi Initialize: VariableCommonInitialize = Success, orig services stored, install gEmuVariableControlProtocolGuid = Success 0:112 0:000 Loading FSInject-64.efi status=Success 0:113 0:000 Loading OsxAptioFixDrv-64.efi status=Success 0:113 0:000 Loading OsxFatBinaryDrv-64.efi status=Success 0:113 0:000 Loading PartitionDxe-64.efi status=Success 0:113 0:000 - driver needs connecting 0:113 0:000 Loading HFSPlus.efi status=Success 0:114 0:000 - driver needs connecting 0:114 0:000 2 drivers needs connecting ... 0:114 0:000 PlatformDriverOverrideProtocol->GetDriver overriden 0:114 0:000 Partition driver loaded: CD disconnect Success 0:114 0:000 HFS+ driver loaded 0:114 0:000 Searching for invalid DiskIo BY_DRIVER connects: not found, all ok 0:340 0:226 LoadDrivers() end 0:340 0:000 EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success 0:345 0:005 SetScreenResolution: 1920x1080 - already set 0:345 0:000 Console modes reported: 4, available modes: 0:345 0:000 Mode 1: 80x25 (current mode) 0:345 0:000 Mode 2: 80x50 0:345 0:000 Mode 3: 100x31 0:345 0:000 Mode 4: 240x56 0:345 0:000 SetScreenResolution: 1920x1080 - already set 0:345 0:000 reinit: self device path=PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(1,GPT,0A2A3BFE-C3AC-4090-A736-7453B3238CE2,0x28,0x64000) 0:362 0:017 ScanSPD() start 0:362 0:000 SMBus device : 8086 8D22 class=0C0500 status=Success 0:362 0:000 SMBus CmdReg: 0x3 0:362 0:000 Scanning SMBus [8086:8D22], mmio: 0xFBF3C004, ioport: 0x580, hostc: 0x1 0:362 0:000 Slots to scan [8]... 0:364 0:001 ScanSPD() end 0:364 0:000 Get Acpi Tables List from RSDT: 0:364 0:000 Found table: FACP A M I len=132 0:364 0:000 Found table: APIC A M I len=256 0:364 0:000 Found table: FPDT A M I len=68 0:364 0:000 Found table: FIDT A M I len=156 0:364 0:000 Found table: MCFG A M I len=60 0:364 0:000 Found table: ASF! HCG len=160 0:364 0:000 Found table: SSDT SataTabl len=877 0:364 0:000 Found table: UEFI A M I len=66 0:364 0:000 Found table: HPET A M I len=56 0:364 0:000 Found table: MSCT A M I len=144 0:364 0:000 Found table: SLIT A M I len=45 0:364 0:000 Found table: SRAT A M I len=4440 0:364 0:000 Found table: WDDT A M I len=64 0:364 0:000 Found table: SSDT PmMgt len=86589 0:364 0:000 Calibrated TSC frequency =3299991510 =3299MHz 0:364 0:000 Loading main settings 0:364 0:000 USB FixOwnership: true 0:364 0:000 Dropping 3 tables 0:364 0:000 Drop table 0 signature="DMAR" (52414D44) 0:364 0:000 set table: 52414D44, 0 to drop: 0:364 0:000 Drop table 1 signature="SSDT" (54445353) table-id="Cpu0Ist" (0074734930757043) 0:364 0:000 set table: 54445353, 74734930757043 to drop: 0:364 0:000 Drop table 2 signature="SSDT" (54445353) table-id="CpuPm" (0000006D50757043) 0:364 0:000 set table: 54445353, 6D50757043 to drop: 0:364 0:000 Config set EnableC6: + 0:364 0:000 Config set ChassisType=0x6 0:364 0:000 KextsToPatch: 3 requested 0:364 0:000 KextsToPatch 0: AppleUSBXHCIPCI (usb 3 limit 10.12) :: Matched OSes: 10.12.x :: Kext bin patch, data len: 4 0:364 0:000 KextsToPatch 1: IOAHCIBlockStorage (Trim) :: Matched OSes: 10.11.x,10.12.x :: Kext bin patch, data len: 11 0:364 0:000 KextsToPatch 2: AppleUSBXHCIPCI (usb 3 limit 10.11) :: Matched OSes: 10.11.x :: Kext bin patch, data len: 7 0:364 0:000 found 13 volumes with blockIO 0:364 0:000 0. Volume: 0:364 0:000 PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0) 0:366 0:002 1. Volume: 0:366 0:000 PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0) 0:366 0:000 found optical drive 0:366 0:000 2. Volume: 0:366 0:000 PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(1,GPT,8561E08C-283B-4190-A77A-5458F75F10B1,0x28,0x64000) 0:367 0:000 Result of bootcode detection: bootable unknown (legacy) 0:367 0:000 3. Volume: 0:367 0:000 PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(2,GPT,E89D7E8F-D2D8-4982-9E33-D6A2B04576BF,0x64028,0xDDFAC40) 0:367 0:000 4. Volume: 0:367 0:000 PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x3,0xFFFF,0x0)\HD(3,GPT,CA007C04-73BE-4F1A-B3A1-F77F1F47B088,0xDE5EC68,0x135F20) 0:368 0:000 hiding this volume 0:368 0:000 5. Volume: 0:368 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0) 0:368 0:000 6. Volume: 0:368 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0) 0:369 0:000 7. Volume: 0:369 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0)\HD(1,GPT,B1650157-FE7D-492F-AC4C-7B333B79F801,0x28,0x64000) 0:370 0:000 Result of bootcode detection: bootable unknown (legacy) 0:370 0:000 8. Volume: 0:370 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0)\HD(2,GPT,9128246A-7393-40AC-BB96-75465F7DE11D,0x64028,0xA30723F8) 0:370 0:000 9. Volume: 0:370 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x2,0xFFFF,0x0)\HD(3,GPT,63C4321E-4CF1-4831-93BC-0B8AC34F5751,0xA3116420,0x45CB2468) 0:371 0:000 10. Volume: 0:371 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(1,GPT,0A2A3BFE-C3AC-4090-A736-7453B3238CE2,0x28,0x64000) 0:372 0:000 Result of bootcode detection: bootable unknown (legacy) 0:372 0:000 This is SelfVolume !! 0:372 0:000 11. Volume: 0:372 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(2,GPT,F9EB2C88-4756-4B60-B231-6CDC92DABA9E,0x64028,0x1BD8A540) 0:372 0:000 12. Volume: 0:372 0:000 PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(3,GPT,69789CCA-F8B6-4C40-AE30-89A595B6863B,0x1BDEE568,0x135F20) 0:373 0:000 hiding this volume 0:376 0:002 Loading nvram.plist from Vol 'El Capitan' - loaded, size=6325 0:377 0:001 PutNvramPlistToRtVars ... 0:377 0:000 Adding Key: Clover.BackupDirOnDestVol: Size = 3, Data: 59 65 73 0:377 0:000 Adding Key: Clover.KeepBackupLimit: Size = 2, Data: 31 30 0:377 0:000 Adding Key: Clover.LogEveryBoot: Size = 2, Data: 31 30 0:377 0:000 Adding Key: Clover.LogLineCount: Size = 3, Data: 31 30 30 0:377 0:000 Adding Key: Clover.MountEFI: Size = 3, Data: 59 65 73 0:377 0:000 Adding Key: Clover.Theme: Size = 9, Data: 43 72 69 73 70 79 4F 53 58 0:377 0:000 Skipping EmuVariableUefiPresent 0:377 0:000 Skipping OsxAptioFixDrv-RelocBase 0:377 0:000 Adding Key: SystemAudioVolume: Size = 1, Data: 80 0:377 0:000 Adding Key: SystemAudioVolumeDB: Size = 1, Data: F0 0:377 0:000 Adding Key: bootercfg: Size = 2, Data: 28 00 0:377 0:000 Adding Key: csr-active-config: Size = 4, Data: 67 00 00 00 0:377 0:000 Adding Key: efi-apple-payload0: Size = 416, Data: 3C 61 72 72 61 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 50 72 6F 76 69 64 65 72 43 6C 61 73 73 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 49 4F 4D 65 64 69 61 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 49 4F 50 72 6F 70 65 72 74 79 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 55 55 49 44 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 30 41 32 41 33 42 46 45 2D 43 33 41 43 2D 34 30 39 30 2D 41 37 33 36 2D 37 34 35 33 42 33 32 33 38 43 45 32 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 64 69 63 74 3E 3C 6B 65 79 3E 42 4C 4C 61 73 74 42 53 44 4E 61 6D 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 64 69 73 6B 30 73 31 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 45 46 49 44 65 76 69 63 65 50 61 74 68 54 79 70 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 4D 65 64 69 61 46 69 6C 65 50 61 74 68 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 50 61 74 68 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 5C 45 46 49 5C 41 50 50 4C 45 5C 55 50 44 41 54 45 52 53 5C 4D 55 4C 54 49 55 50 44 41 54 45 52 5C 53 6D 63 46 6C 61 73 68 65 72 2E 65 66 69 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 61 72 72 61 79 3E 0:377 0:000 Adding Key: efi-apple-payload0-data: Size = 174, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 04 11 03 12 0A 00 03 00 00 00 00 00 04 01 2A 00 01 00 00 00 28 00 00 00 00 00 00 00 00 40 06 00 00 00 00 00 FE 3B 2A 0A AC C3 90 40 A7 36 74 53 B3 23 8C E2 02 02 04 04 64 00 5C 00 45 00 46 00 49 00 5C 00 41 00 50 00 50 00 4C 00 45 00 5C 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 53 00 5C 00 4D 00 55 00 4C 00 54 00 49 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 5C 00 53 00 6D 00 63 00 46 00 6C 00 61 00 73 00 68 00 65 00 72 00 2E 00 65 00 66 00 69 00 00 00 7F FF 04 00 0:377 0:000 Adding Key: efi-apple-payload1: Size = 418, Data: 3C 61 72 72 61 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 50 72 6F 76 69 64 65 72 43 6C 61 73 73 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 49 4F 4D 65 64 69 61 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 49 4F 50 72 6F 70 65 72 74 79 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 55 55 49 44 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 30 41 32 41 33 42 46 45 2D 43 33 41 43 2D 34 30 39 30 2D 41 37 33 36 2D 37 34 35 33 42 33 32 33 38 43 45 32 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 64 69 63 74 3E 3C 6B 65 79 3E 42 4C 4C 61 73 74 42 53 44 4E 61 6D 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 64 69 73 6B 30 73 31 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 45 46 49 44 65 76 69 63 65 50 61 74 68 54 79 70 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 4D 65 64 69 61 46 69 6C 65 50 61 74 68 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 50 61 74 68 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 5C 45 46 49 5C 41 50 50 4C 45 5C 55 50 44 41 54 45 52 53 5C 4D 55 4C 54 49 55 50 44 41 54 45 52 5C 66 6C 61 73 68 65 72 5F 62 61 73 65 2E 73 6D 63 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 61 72 72 61 79 3E 0:377 0:000 Adding Key: efi-apple-payload1-data: Size = 178, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 04 11 03 12 0A 00 03 00 00 00 00 00 04 01 2A 00 01 00 00 00 28 00 00 00 00 00 00 00 00 40 06 00 00 00 00 00 FE 3B 2A 0A AC C3 90 40 A7 36 74 53 B3 23 8C E2 02 02 04 04 68 00 5C 00 45 00 46 00 49 00 5C 00 41 00 50 00 50 00 4C 00 45 00 5C 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 53 00 5C 00 4D 00 55 00 4C 00 54 00 49 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 5C 00 66 00 6C 00 61 00 73 00 68 00 65 00 72 00 5F 00 62 00 61 00 73 00 65 00 2E 00 73 00 6D 00 63 00 00 00 7F FF 04 00 0:377 0:000 Adding Key: efi-apple-payload2: Size = 420, Data: 3C 61 72 72 61 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 50 72 6F 76 69 64 65 72 43 6C 61 73 73 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 49 4F 4D 65 64 69 61 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 49 4F 50 72 6F 70 65 72 74 79 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 55 55 49 44 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 30 41 32 41 33 42 46 45 2D 43 33 41 43 2D 34 30 39 30 2D 41 37 33 36 2D 37 34 35 33 42 33 32 33 38 43 45 32 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 64 69 63 74 3E 3C 6B 65 79 3E 42 4C 4C 61 73 74 42 53 44 4E 61 6D 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 64 69 73 6B 30 73 31 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 45 46 49 44 65 76 69 63 65 50 61 74 68 54 79 70 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 4D 65 64 69 61 46 69 6C 65 50 61 74 68 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 50 61 74 68 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 5C 45 46 49 5C 41 50 50 4C 45 5C 55 50 44 41 54 45 52 53 5C 4D 55 4C 54 49 55 50 44 41 54 45 52 5C 66 6C 61 73 68 65 72 5F 75 70 64 61 74 65 2E 73 6D 63 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 61 72 72 61 79 3E 0:377 0:000 Adding Key: efi-apple-payload2-data: Size = 182, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 04 11 03 12 0A 00 03 00 00 00 00 00 04 01 2A 00 01 00 00 00 28 00 00 00 00 00 00 00 00 40 06 00 00 00 00 00 FE 3B 2A 0A AC C3 90 40 A7 36 74 53 B3 23 8C E2 02 02 04 04 6C 00 5C 00 45 00 46 00 49 00 5C 00 41 00 50 00 50 00 4C 00 45 00 5C 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 53 00 5C 00 4D 00 55 00 4C 00 54 00 49 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 5C 00 66 00 6C 00 61 00 73 00 68 00 65 00 72 00 5F 00 75 00 70 00 64 00 61 00 74 00 65 00 2E 00 73 00 6D 00 63 00 00 00 7F FF 04 00 0:377 0:000 Adding Key: efi-apple-payload3: Size = 426, Data: 3C 61 72 72 61 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 50 72 6F 76 69 64 65 72 43 6C 61 73 73 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 49 4F 4D 65 64 69 61 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 49 4F 50 72 6F 70 65 72 74 79 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 55 55 49 44 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 30 41 32 41 33 42 46 45 2D 43 33 41 43 2D 34 30 39 30 2D 41 37 33 36 2D 37 34 35 33 42 33 32 33 38 43 45 32 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 64 69 63 74 3E 3C 6B 65 79 3E 42 4C 4C 61 73 74 42 53 44 4E 61 6D 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 64 69 73 6B 30 73 31 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 45 46 49 44 65 76 69 63 65 50 61 74 68 54 79 70 65 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 4D 65 64 69 61 46 69 6C 65 50 61 74 68 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 50 61 74 68 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 5C 45 46 49 5C 41 50 50 4C 45 5C 55 50 44 41 54 45 52 53 5C 4D 55 4C 54 49 55 50 44 41 54 45 52 5C 4D 61 63 2D 46 36 30 44 45 42 38 31 46 46 33 30 41 43 46 36 2E 65 70 6D 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 61 72 72 61 79 3E 0:377 0:000 Adding Key: efi-apple-payload3-data: Size = 194, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 04 11 03 12 0A 00 03 00 00 00 00 00 04 01 2A 00 01 00 00 00 28 00 00 00 00 00 00 00 00 40 06 00 00 00 00 00 FE 3B 2A 0A AC C3 90 40 A7 36 74 53 B3 23 8C E2 02 02 04 04 78 00 5C 00 45 00 46 00 49 00 5C 00 41 00 50 00 50 00 4C 00 45 00 5C 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 53 00 5C 00 4D 00 55 00 4C 00 54 00 49 00 55 00 50 00 44 00 41 00 54 00 45 00 52 00 5C 00 4D 00 61 00 63 00 2D 00 46 00 36 00 30 00 44 00 45 00 42 00 38 00 31 00 46 00 46 00 33 00 30 00 41 00 43 00 46 00 36 00 2E 00 65 00 70 00 6D 00 00 00 7F FF 04 00 0:377 0:000 Adding Key: fakesmc-key-CLKH-{clh: Size = 8, Data: 00 00 70 80 00 01 19 40 0:377 0:000 Adding Key: fakesmc-key-CLKT-ui32: Size = 4, Data: 00 00 B0 A9 0:377 0:000 Adding Key: fakesmc-key-MSDW-ui8: Size = 1, Data: 01 0:377 0:000 Adding Key: fakesmc-key-NATJ-ui8: Size = 1, Data: 00 0:377 0:000 Adding Key: fakesmc-key-NATi-ui16: Size = 2, Data: 00 00 0:377 0:000 Adding Key: fakesmc-key-NTOK-ui8: Size = 1, Data: 01 0:377 0:000 Adding Key: fmm-computer-name: Size = 7, Data: 4D 61 63 20 50 72 6F 0:377 0:000 Adding Key: fmm-mobileme-token-FMM: Size = 615, Data: 62 70 6C 69 73 74 30 30 DA 01 02 03 04 05 06 07 08 09 0A 0B 0C 17 18 19 1A 1B 1C 1D 24 56 75 73 65 72 69 64 5F 10 13 64 61 74 61 63 6C 61 73 73 50 72 6F 70 65 72 74 69 65 73 59 61 75 74 68 54 6F 6B 65 6E 58 70 65 72 73 6F 6E 49 44 58 75 73 65 72 6E 61 6D 65 57 61 64 64 54 69 6D 65 5F 10 12 65 6E 61 62 6C 65 64 44 61 74 61 63 6C 61 73 73 65 73 54 67 75 69 64 58 75 73 65 72 49 6E 66 6F 5F 10 11 6F 73 55 73 65 72 44 69 73 61 70 70 65 61 72 65 64 11 01 F5 D1 0D 0E 5F 10 21 63 6F 6D 2E 61 70 70 6C 65 2E 44 61 74 61 63 6C 61 73 73 2E 44 65 76 69 63 65 4C 6F 63 61 74 6F 72 D4 0F 10 11 12 13 14 15 16 56 61 70 73 45 6E 76 58 68 6F 73 74 6E 61 6D 65 5D 61 75 74 68 4D 65 63 68 61 6E 69 73 6D 56 73 63 68 65 6D 65 5A 50 72 6F 64 75 63 74 69 6F 6E 5F 10 13 70 31 37 2D 66 6D 69 70 2E 69 63 6C 6F 75 64 2E 63 6F 6D 55 74 6F 6B 65 6E 55 68 74 74 70 73 5F 10 28 41 51 41 41 41 41 42 58 56 6E 48 7A 6A 32 37 4B 63 31 73 71 62 41 65 61 36 6B 50 37 73 47 6A 5A 76 64 57 58 76 66 51 7E 5A 31 30 30 30 38 38 36 37 36 30 5F 10 0F 68 6F 67 6E 6F 73 65 40 66 72 65 65 2E 66 72 23 41 D5 D5 9C 82 2B CC 8A A1 0D 5F 10 24 39 44 37 41 42 38 30 31 2D 45 43 45 39 2D 34 30 46 44 2D 41 38 39 42 2D 42 31 30 39 30 44 45 44 42 45 37 37 D3 1E 1F 20 21 22 23 5F 10 15 49 6E 55 73 65 4F 77 6E 65 72 44 69 73 70 6C 61 79 4E 61 6D 65 5F 10 13 49 6E 55 73 65 4F 77 6E 65 72 46 69 72 73 74 4E 61 6D 65 5F 10 12 49 6E 55 73 65 4F 77 6E 65 72 4C 61 73 74 4E 61 6D 65 5E 46 72 65 64 65 72 69 63 20 4C 6F 62 72 79 58 46 72 65 64 65 72 69 63 55 4C 6F 62 72 79 09 00 08 00 1D 00 24 00 3A 00 44 00 4D 00 56 00 5E 00 73 00 78 00 81 00 95 00 98 00 9B 00 BF 00 C8 00 CF 00 D8 00 E6 00 ED 00 F8 01 0E 01 14 01 1A 01 45 01 50 01 62 01 6B 01 6D 01 94 01 9B 01 B3 01 C9 01 DE 01 ED 01 F6 01 FC 00 00 00 00 00 00 02 01 00 00 00 00 00 00 00 25 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 FD 0:377 0:000 Adding Key: install-product-url: Size = 73, Data: 78 2D 6F 73 70 72 6F 64 75 63 74 3A 2F 2F 41 37 38 33 32 43 46 44 2D 35 39 43 35 2D 33 45 46 32 2D 41 39 35 32 2D 44 46 38 37 43 33 44 33 44 33 42 43 2F 6D 61 63 4F 53 25 32 30 49 6E 73 74 61 6C 6C 25 32 30 44 61 74 61 0:377 0:000 Adding Key: prev-lang:kbd: Size = 4, Data: 66 72 3A 31 0:377 0:000 Adding Key: rc_imgsrc_info: Size = 92, Data: 62 70 6C 69 73 74 30 30 A1 01 D1 02 03 5F 10 24 41 37 38 33 32 43 46 44 2D 35 39 43 35 2D 33 45 46 32 2D 41 39 35 32 2D 44 46 38 37 43 33 44 33 44 33 42 43 53 75 73 62 08 0A 0D 34 00 00 00 00 00 00 01 01 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 38 0:377 0:000 Adding Key: security-mode: String: Size = 4, Val = 'none' 0:377 0:000 Using theme 'CrispyOSX' (EFI\CLOVER\themes\CrispyOSX) 0:377 0:000 theme CrispyOSX defined in NVRAM found and theme.plist parsed 0:377 0:000 OS main and drive as badge 0:379 0:002 Choosing theme CrispyOSX 0:380 0:000 Custom entries start 0:380 0:000 Custom entries finish 0:380 0:000 Scanning loaders... 0:380 0:000 0: 'Whole Disc Boot' no file system 0:380 0:000 1: 'Whole Disc Boot' no file system 0:380 0:000 2: 'EFI' 0:388 0:008 3: 'Sierra' 0:390 0:001 AddLoaderEntry for Volume Name=Sierra 0:391 0:001 Check if volume Is Hibernated: 0:391 0:000 Check sleep image 'by signature': 0:394 0:002 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Not Found 0:394 0:000 using default sleep image name = \private\var\vm\sleepimage 0:396 0:001 sleepimage not found -> Not Found 0:396 0:000 hibernated: no - sign 0:396 0:000 Icon 17 (icons\vol_internal_hfs.icns) not found 0:396 0:000 Theme path EFI\CLOVER\themes\CrispyOSX, ThemeDir=C6400320 0:404 0:007 4: 'Recovery HD' hidden 0:404 0:000 5: 'Whole Disc Boot' no file system 0:404 0:000 6: 'Whole Disc Boot' no file system 0:404 0:000 7: 'EFI' 0:411 0:006 8: 'Stockage' 0:418 0:007 9: 'Time Machine' 0:426 0:008 10: 'EFI' 0:433 0:006 11: 'El Capitan' 0:437 0:003 AddLoaderEntry for Volume Name=El Capitan 0:439 0:002 Check if volume Is Hibernated: 0:439 0:000 Check sleep image 'by signature': 0:445 0:005 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success 0:445 0:000 SleepImage name from pref: ImageVolume = 'El Capitan', ImageName = '\private\var\vm\sleepimage' 0:447 0:002 sleepimage not found -> Not Found 0:447 0:000 hibernated: no - sign 0:456 0:009 12: 'Recovery HD' hidden 0:456 0:000 Custom legacy start 0:456 0:000 Custom legacy end 0:456 0:000 Scanning legacy ... 0:456 0:000 0: 'Whole Disc Boot' (legacy) not legacy 0:456 0:000 1: 'Whole Disc Boot' (legacy) not legacy 0:456 0:000 2: 'EFI' (legacy) not legacy 0:456 0:000 3: 'Sierra' (legacy) not legacy 0:456 0:000 4: 'Recovery HD' (legacy) not legacy 0:456 0:000 5: 'Whole Disc Boot' (legacy) not legacy 0:456 0:000 6: 'Whole Disc Boot' (legacy) not legacy 0:456 0:000 7: 'EFI' (legacy) not legacy 0:456 0:000 8: 'Stockage' (legacy) not legacy 0:456 0:000 9: 'Time Machine' (legacy) not legacy 0:456 0:000 10: 'EFI' (legacy) not legacy 0:456 0:000 11: 'El Capitan' (legacy) not legacy 0:456 0:000 12: 'Recovery HD' (legacy) not legacy 0:456 0:000 Custom tool start 0:456 0:000 Custom tool end 0:457 0:000 found tool \EFI\CLOVER\tools\Shell64U.efi 0:457 0:000 Checking EFI partition Volume 2 for Clover 0:457 0:000 Checking EFI partition Volume 7 for Clover 0:457 0:000 Checking EFI partition Volume 10 for Clover 0:457 0:000 Found Clover 0:457 0:000 EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored 0:457 0:000 EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success 0:463 0:005 GetEfiBootDeviceFromNvram: efi-boot-device-data not found 0:463 0:000 EfiBootVolume not found 0:463 0:000 found entry 1. 'Boot Mac OS X from El Capitan', Volume 'El Capitan', DevicePath 'PciRoot(0x0)\Pci(0x11,0x4)\Sata(0x3,0xFFFF,0x0)\HD(2,GPT,F9EB2C88-4756-4B60-B231-6CDC92DABA9E,0x64028,0x1BD8A540)\System\Library\CoreServices\boot.efi' 0:463 0:000 EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored 0:463 0:000 DefaultIndex=1 and MainMenu.EntryCount=8 1:561 1:097 Found Mouse device: 1:561 0:000 GUI ready 3:062 1:500 Boot option Boot0000 not found 3:062 0:000 StartLoader() start 3:062 0:000 Entry->Settings: <null string> 3:062 0:000 Finally: Bus=99999kHz CPU=3300MHz 3:062 0:000 Loading boot.efi status=Success 3:141 0:079 GetOSVersion: 10.12 3:141 0:000 Filtering KextPatches: 3:141 0:000 - Patch [0] "AppleUSBXHCIPCI" :: KextPatch :: [OS: 10.12 | MatchOS: 10.12.x] ==> allowed 3:141 0:000 - Patch [1] "IOAHCIBlockStorage" :: KextPatch :: [OS: 10.12 | MatchOS: 10.11.x,10.12.x ] ==> allowed 3:141 0:000 - Patch [2] "AppleUSBXHCIPCI" :: KextPatch :: [OS: 10.12 | MatchOS: 10.11.x] ==> not allowed 3:141 0:000 EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success 3:147 0:005 insert table 9 for dev 0:0 3:147 0:000 insert table 9 for dev 0:1 3:147 0:000 insert table 9 for dev 19:0 3:148 0:000 Trusting SMBIOS... 3:148 0:000 Detected alternating SMBIOS channel banks 3:148 0:000 Channels: 4 3:148 0:000 Interleave: 0 2 4 6 1 3 5 7 8 10 12 14 9 11 13 15 16 18 20 22 17 19 21 23 3:148 0:000 partNum unknown 3:148 0:000 SMBIOS Type 17 Index = 0 => 0 0: 3:148 0:000 DIMM1 2133MHz 4096MB 3:148 0:000 partNum unknown 3:148 0:000 SMBIOS Type 17 Index = 1 => 1 2: 3:148 0:000 DIMM2 2133MHz 4096MB 3:148 0:000 partNum unknown 3:148 0:000 SMBIOS Type 17 Index = 2 => 2 4: 3:148 0:000 DIMM3 2133MHz 4096MB 3:148 0:000 partNum unknown 3:148 0:000 SMBIOS Type 17 Index = 3 => 3 6: 3:148 0:000 DIMM4 2133MHz 4096MB 3:148 0:000 SMBIOS Type 17 Index = 4 => 4 1: 3:148 0:000 DIMM5 EMPTY 3:148 0:000 SMBIOS Type 17 Index = 5 => 5 3: 3:148 0:000 DIMM6 EMPTY 3:148 0:000 SMBIOS Type 17 Index = 6 => 6 5: 3:148 0:000 DIMM7 EMPTY 3:148 0:000 SMBIOS Type 17 Index = 7 => 7 7: 3:148 0:000 DIMM8 EMPTY 3:148 0:000 mTotalSystemMemory = 16384 3:148 0:000 NumberOfMemoryDevices = 8 3:148 0:000 Type20[0]->End = 0x3FFFFF, Type17[0] = 0x1000 3:148 0:000 Type20[1]->End = 0x7FFFFF, Type17[1] = 0x3000 3:148 0:000 Type20[2]->End = 0xBFFFFF, Type17[2] = 0x6000 3:148 0:000 Type20[3]->End = 0xFFFFFF, Type17[3] = 0xA000 3:148 0:000 Table 131 is present, CPUType=10 3:148 0:000 Change to: 507 3:148 0:000 RSDT 0xCB3BB028 3:148 0:000 FADT from RSDT: 0xCB3BB130 3:148 0:000 XSDT 0xCB3BB090 3:148 0:000 FADT from XSDT: 0xCB3F1130 3:148 0:000 Xsdt reallocation done 3:148 0:000 old FADT length=10C 3:148 0:000 Apply DsdtFixMask=0x00000000 old way 3:148 0:000 drop _DSM mask=0x0000 3:148 0:000 ========= Auto patch DSDT Starting ======== 3:148 0:000 VideoCard devID=0x679A1002 3:148 0:000 DisplayADR1[0] = 0x30000, DisplayADR2[0] = 0x0 3:148 0:000 USBADR[0] = 0x140000 and PCIe = 0xFFFE 3:148 0:000 USBADR[1] = 0x1C0004 and PCIe = 0x0 3:148 0:000 first CPU found at 2C0B offset 2C0F 3:148 0:000 device candidate at 2B72 3:148 0:000 device inserted in acpi_cpu_score SCK0 3:148 0:000 score candidate at 2986 3:148 0:000 score inserted in acpi_cpu_score _SB_SCK0 3:148 0:000 Found ACPI CPU: CP00 And CP01 And CP02 And CP03 And CP04 And CP05 And CP06 And CP07 And CP08 And CP09 And CP0A And CP0B And CP0C And CP0D And CP0E And CP0F And CP10 And CP11 And CP12 And CP13 And CP14 And CP15 And CP16 And CP17 And CP18 And CP19 And CP1A And CP1B And CP1C And CP1D And CP1E And CP1F within the score: _SB_SCK0 3:148 0:000 Found PCIROOTUID = 0 3:148 0:000 ========= Auto patch DSDT Finished ======== 3:148 0:000 Patch table: SSDT SataTabl 3:148 0:000 SSDT len = 0x36D 3:148 0:000 Patch table: SSDT PmMgt 3:148 0:000 SSDT len = 0x1523D 3:148 0:000 Drop tables from Xsdt, SIGN=XXXX TableID= Length=0 3:148 0:000 Xsdt has tables count=14 3:148 0:000 corrected XSDT length=148 3:148 0:000 CPUBase=0 and ApicCPUBase=0 ApicCPUNum=12 3:148 0:000 Maximum control=0x21 3:148 0:000 Turbo control=0x29 3:148 0:000 P-States: min 0xC, max 0x29 3:148 0:000 SSDT with CPU P-States generated successfully 3:149 0:000 SSDT with CPU C-States generated successfully 3:149 0:000 EdidDiscovered size=128 3:149 0:000 00 | 00 FF FF FF FF FF FF 00 26 CD 1D 56 01 01 01 01 3:149 0:000 16 | 06 17 01 03 81 33 1D 78 2A E2 95 A2 55 4F 9F 26 3:149 0:000 32 | 11 50 54 BF EF 80 B3 00 A9 40 95 00 81 80 95 0F 3:149 0:000 48 | 71 4F 01 01 01 01 02 3A 80 18 71 38 2D 40 58 2C 3:149 0:000 64 | 45 00 FE 1F 11 00 00 1E 00 00 00 FF 00 31 31 31 3:149 0:000 80 | 33 38 33 30 36 32 31 32 33 35 00 00 00 FD 00 37 3:149 0:000 96 | 4C 1E 51 11 00 0A 20 20 20 20 20 20 00 00 00 FC 3:149 0:000 112 | 00 50 4C 32 33 37 37 0A 20 20 20 20 20 20 01 77 3:149 0:000 ATI injection not set 3:149 0:000 RCBA access disabled; trying to enable 3:149 0:000 USB Controller [8086:8D31] :: PciRoot(0x0)\Pci(0x14,0x0) 3:149 0:000 LAN Controller [8086:15A1] :: PciRoot(0x0)\Pci(0x19,0x0) 3:149 0:000 HDA Controller [8086:8D20] :: PciRoot(0x0)\Pci(0x1B,0x0) => detected codec: 10EC:0900 3:149 0:000 USB Controller [1B21:1142] :: PciRoot(0x0)\Pci(0x1C,0x4)\Pci(0x0,0x0) 3:149 0:000 stringlength = 1640 3:149 0:000 CurrentMode: Width=1920 Height=1080 3:149 0:000 Beginning FSInjection FSInjectionInstall ... - Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: C87EE118 FSInjectionInstall ... - Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: C87EE118 3:156 0:006 Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\Other 3:156 0:000 Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\10.12 3:157 0:000 Extra kext: EFI\CLOVER\kexts\10.12\FakeSMC.kext 3:159 0:002 Extra PlugIn kext: EFI\CLOVER\kexts\10.12\FakeSMC.kext\Contents\PlugIns\FakeSMC_ACPISensors.kext 3:161 0:001 Extra PlugIn kext: EFI\CLOVER\kexts\10.12\FakeSMC.kext\Contents\PlugIns\FakeSMC_CPUSensors.kext 3:162 0:000 Extra PlugIn kext: EFI\CLOVER\kexts\10.12\FakeSMC.kext\Contents\PlugIns\FakeSMC_GPUSensors.kext 3:163 0:001 Extra PlugIn kext: EFI\CLOVER\kexts\10.12\FakeSMC.kext\Contents\PlugIns\FakeSMC_LPCSensors.kext 3:168 0:004 Extra kext: EFI\CLOVER\kexts\10.12\USB_Injector.kext 3:169 0:001 Removed efi-boot-device-data variable: Not Found 3:169 0:000 Custom boot is disabled 3:169 0:000 Closing log logout Saving session... ...copying shared history... ...saving history...truncating history files... ...completed. Deleting expired sessions...none found. [Opération terminée] Thank 3 Link to comment Share on other sites More sharing options...
RehabMan Posted July 9, 2016 Share Posted July 9, 2016 Same here (you pasted it 2 times) Correct link :https://github.com/RehabMan/patch-nvme I see the IM post editor is up to its normal tricks. I fixed the link in the original post... I read your Github page on NVMe, and I see your point. Do we need to disable the orignal kext to avoid further conflicts. Maybe this original kext won't be a problem as it doesn't recognize our SSDs and so it doesn't even load ... No need to disable the vanilla IONVMeFamily.kext. It will not load for our devices as its IOKitPersonality entries do not match standard NVMe SSDs. Link to comment Share on other sites More sharing options...
sebinouse Posted July 9, 2016 Share Posted July 9, 2016 I see the IM post editor is up to its normal tricks. I fixed the link in the original post... No need to disable the vanilla IONVMeFamily.kext. It will not load for our devices as its IOKitPersonality entries do not match standard NVMe SSDs. OK thanks ! Link to comment Share on other sites More sharing options...
Mork vom Ork Posted July 9, 2016 Share Posted July 9, 2016 Sorry for disturbing, but what does that mean and how to get avoid: 5:695 0:003 Force kext: /System/Library/Extensions/AppleThunderboltNHI.kext 5:695 0:000 Failed to load extra kext (Info.plist not found): /System/Library/Extensions/AppleThunderboltNHI.kext I'd like to get the AppleThunderboltNHI.kext to force load, so i droped this line into config.plist: <key>ForceKextsToLoad</key> <array> <string>/System/Library/Extensions/AppleThunderboltNHI.kext</string> </array> But as you can see above: i will always get the above message in CLOVER.log. Is it me doing something wrong? Anyone with a tip to fix it? Thanx in advance... Mork vom Ork Link to comment Share on other sites More sharing options...
RehabMan Posted July 9, 2016 Share Posted July 9, 2016 Sorry for disturbing, but what does that mean and how to get avoid: 5:695 0:003 Force kext: /System/Library/Extensions/AppleThunderboltNHI.kext 5:695 0:000 Failed to load extra kext (Info.plist not found): /System/Library/Extensions/AppleThunderboltNHI.kextI'd like to get the AppleThunderboltNHI.kext to force load, so i droped this line into config.plist: <key>ForceKextsToLoad</key> <array> <string>/System/Library/Extensions/AppleThunderboltNHI.kext</string> </array>But as you can see above: i will always get the above message in CLOVER.log. Is it me doing something wrong? Anyone with a tip to fix it?Thanx in advance... Mork vom Ork Maybe the kext is missing, Info.plist is missing, or Info.plist is otherwise damaged. Link to comment Share on other sites More sharing options...
mhaeuser Posted July 9, 2016 Share Posted July 9, 2016 Regarding kexts like NVMe - maybe you would want to have patch groups? Like Clover would make sure all patterns of a group are found for them to be applied... though that could still mean a patch can be applied more often than desired. Link to comment Share on other sites More sharing options...
Micky1979 Posted July 9, 2016 Share Posted July 9, 2016 Yep, I guess is the same reason why is not loaded by itself.. Regarding kexts like NVMe - maybe you would want to have patch groups? Like Clover would make sure all patterns of a group are found for them to be applied... though that could still mean a patch can be applied more often than desired. I guess that this is already ensured by Pike making the patch (more bytes involved, to be unique in the binary) Link to comment Share on other sites More sharing options...
Mork vom Ork Posted July 9, 2016 Share Posted July 9, 2016 Maybe the kext is missing, Info.plist is missing, or Info.plist is otherwise damaged. just checked: path and file: both are correct and NOT damaged. Could open the kexts info.plist with PListEditor and with XCode. Also i got this message with every kext i try to ForceLoad. Just tried to forceload kexts from /S/L/E - not from any other place so far. But no matter what kext i try to forceload, i get the errormessage about not found "info.plist" for that kext. Strange, isn't it? Link to comment Share on other sites More sharing options...
mhaeuser Posted July 9, 2016 Share Posted July 9, 2016 Yep, I guess is the same reason why is not loaded by itself.. I guess that this is already ensured by Pike making the patch (more bytes involved, to be unique) That makes it less likely to fail, but not impossible. Remember data corruption is threat enough to be 10000% sure the patch only gets applied when appropiate. 1 Link to comment Share on other sites More sharing options...
Mork vom Ork Posted July 9, 2016 Share Posted July 9, 2016 I guess that this is already ensured by Pike making the patch (more bytes involved, to be unique in the binary) YES, that is exact the reason, why I choosed more bytes than needed to get replaced: to make sure, that the just to change bytes are not found in places, where a change is not "wanted". 1 Link to comment Share on other sites More sharing options...
Micky1979 Posted July 9, 2016 Share Posted July 9, 2016 That makes it less likely to fail, but not impossible. Remember data corruption is threat enough to be 10000% sure the patch only gets applied when appropiate. Off course, but to be 100% sure than we need IDA and Pike R. Alpha implemented inside Clover (quip) Link to comment Share on other sites More sharing options...
RehabMan Posted July 9, 2016 Share Posted July 9, 2016 Regarding kexts like NVMe - maybe you would want to have patch groups? Like Clover would make sure all patterns of a group are found for them to be applied... though that could still mean a patch can be applied more often than desired. Although it would fix the problem of a "partial patch", it would still result in an unbootable system upon update. Clover KextsToPatch is just not a good fit for this task. just checked: path and file: both are correct and NOT damaged. Could open the kexts info.plist with PListEditor and with XCode. Also i got this message with every kext i try to ForceLoad. Just tried to forceload kexts from /S/L/E - not from any other place so far. But no matter what kext i try to forceload, i get the errormessage about not found "info.plist" for that kext. Strange, isn't it? Keep in mind UEFI and Clover's ForceKextsToLoad uses backslashes as directory separators, not forward slashes. 1 Link to comment Share on other sites More sharing options...
mhaeuser Posted July 9, 2016 Share Posted July 9, 2016 Off course, but to be 100% sure than we need IDA and Pike R. Alpha implemented inside Clover (quip) I didn't bother to look at his © patches yet, but if there is a pattern inside the instructions, can use a lib like Capstone to find them in future versions. Although it would fix the problem of a "partial patch", it would still result in an unbootable system upon update. Depends on whether or not the kext has changed in a way that the patches don't work. Link to comment Share on other sites More sharing options...
Mork vom Ork Posted July 9, 2016 Share Posted July 9, 2016 Keep in mind UEFI and Clover's ForceKextsToLoad uses backslashes as directory separators, not forward slashes. And another problem solved on my list. That DID the trick. Thanx RehabMan So: ForceKextsToLoad doesn't work 1 Link to comment Share on other sites More sharing options...
Micky1979 Posted July 9, 2016 Share Posted July 9, 2016 (edited) I didn't bother to look at his © patches yet, but if there is a pattern inside the instructions, can use a lib like Capstone to find them in future versions. To do that Clover should have a global count for the group (= number of patches for the same kexts name?) but then he have to fail the boot voluntarily in case of missmatch with the applied-count, or restore the bytes already changed (= boot fail again). Don't know Capston lib EDIT: downloaded. Edited July 9, 2016 by Micky1979 Link to comment Share on other sites More sharing options...
Recommended Posts