Jump to content

Clover Problems and Solutions


ErmaC
3,206 posts in this topic

Recommended Posts

droples, the exception is triggered by BlockSize 0 being returned from Int 13 on Micky1979's system for one of the devices.  You can't reproduce it if your bios does not return such data.

 

Attached is script to build GCC 6.1.0, along with a patch for the regression of __builtin_ms_va_args when compiling with -flto.  The patch is thanks to vries@gcc.gnu.org.

 

With this patched GCC 6.1.0, Clover builds ok and runs.  [with -gcc53 toolchain option to ebuild.sh].

I noticed boot6 comes out bigger than GCC 5.3.0.

GCC6.1and clover compiled successfully.

just one question
sh ./build_gcc6.sh -x64 -all

or

sh ./build_gcc6.sh -x64 -all -flto

I compiled

@ sh ./build_gcc6.sh -x64 -all

 

 

 

post-617057-0-62715200-1462897930_thumb.jpg

 

 
BOOT6
2:245  0:000  Now is 10.5.2016,  16:2:4 (GMT)
2:245  0:000  Starting Clover rev 3513 on CLOVER EFI
2:245  0:000  Build with: [Args: ./ebuild.sh -t GCC53 -mc --no-usb | Command: build -D DISABLE_USB_SUPPORT -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t GCC53 -n 9 | OS: 10.11.4]
2:245  0:000  SelfDevicePath=PcieRoot(0x0)\Pci(0x1F,0x2)\Sata(0x1,0x0,0x0)\HD(1,GPT,F61211C5-87B9-4CDD-BE33-9DC9BD4A478E,0x28,0x64000) @1F49B498
2:245  0:000  SelfDirPath = \EFI\CLOVER
 
BOOT7
 
0:362  0:001  Found supported controller for BiosBlockIO class=010601
0:362  0:000  Int13Extensions: INT 13 41 DL=80 : CF=0 BX=AA55 CX=0001
0:362  0:000  GetDriveParameters: INT 13 48 DL=80 : CF=0 AH=00
0:362  0:000  BlockSize = 512  LastBlock = 500118191
0:363  0:000  Int13Extensions: INT 13 41 DL=81 : CF=0 BX=AA55 CX=0001
0:363  0:000  GetDriveParameters: INT 13 48 DL=81 : CF=0 AH=00
0:363  0:000  BlockSize = 512  LastBlock = 1465149167
0:447  0:084  VGA Pci.Hdr.Command=0 - not enabled
0:719  0:272  
0:719  0:000  Now is 10.5.2016,  16:8:5 (GMT)
0:719  0:000  Starting Clover rev 3513 on CLOVER EFI
0:719  0:000  Build with: [Args: ./ebuild.sh -t GCC53 -mc --no-usb | Command: build -D DISABLE_USB_SUPPORT -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -p Clover/Clover.dsc -a X64 -b RELEASE -t GCC53 -n 9 | OS: 10.11.4]
0:719  0:000  SelfDevicePath=PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(1,GPT,F61211C5-87B9-4CDD-BE33-9DC9BD4A478E,0x28,0x64000) @1F82AE98

0:719  0:000  SelfDirPath = \EFI\CLOVER

 

 

 

GCC61.txt

 

Link to comment
Share on other sites

hello

 

my build 3513 with XCODE7.3.1, OS X 10.11.5(15F31a)

 

attachicon.gifCloverV2_3513.zip

Thanks, it crash as mine

.

Thanks for testing!

Micky1979:  The exception is divide-by-zero, faulting instruction is '48F7F7' which is div rdx.

 

It comes from BlockIoDxe/BiosInt13.c function Edd11BiosReadBlocks, the following code

  if ((Lba + (BufferSize / BlockSize) - 1) > Media->LastBlock) {
    return EFI_INVALID_PARAMETER;
  }

because BlockSize == Media->BlockSize == 0;

Looking over code I see this value comes BiosInitBlockIo call to Int13Extensions returns Bios->Parameters.BytesPerSector zero for some device.

Slice?

looks like a bug with my PC but unfortunately he worked previously

 

droples, the exception is triggered by BlockSize 0 being returned from Int 13 on Micky1979's system for one of the devices.  You can't reproduce it if your bios does not return such data.

 

Attached is script to build GCC 6.1.0, along with a patch for the regression of __builtin_ms_va_args when compiling with -flto.  The patch is thanks to vries@gcc.gnu.org.

 

With this patched GCC 6.1.0, Clover builds ok and runs.  [with -gcc53 toolchain option to ebuild.sh].

I noticed boot6 comes out bigger than GCC 5.3.0.

Tested:GCC6.1.txt.zip, compilation is fine (had to use -t GCC53 as TOOLCHAIN to deceive ebuild.sh), but boot7 crash at the same way and apparently I'm not alone: #9966 as you've already seen.

UEFI mode and boot6 works, here the build: 3513.zip

Are you using the same edk2 revision I used?

Link to comment
Share on other sites

hello micky

 

about the 3513 rev .. for me is working in UEFI .. my other legacy pc .. is now from my wife .. i really don't test the build in legacy ..

 

watt  i gona do .. is from my wife .. and is working .. with clover old version .. i will try 3513 in this week wend .. i only hope don't brick the pc .. ahahaha

 

all the best

  • Like 1
Link to comment
Share on other sites

Micky1979:  The exception is divide-by-zero, faulting instruction is '48F7F7' which is div rdx.

 

It comes from BlockIoDxe/BiosInt13.c function Edd11BiosReadBlocks, the following code

  if ((Lba + (BufferSize / BlockSize) - 1) > Media->LastBlock) {
    return EFI_INVALID_PARAMETER;
  }

because BlockSize == Media->BlockSize == 0;

Looking over code I see this value comes BiosInitBlockIo call to Int13Extensions returns Bios->Parameters.BytesPerSector zero for some device.

Slice?

I may propose a simple workaround

if (!BlockSize) BlockSize = 512;

We should check alignment produced by different compilers.

  • Like 2
Link to comment
Share on other sites

looks like a bug with my PC but unfortunately he worked previously

Could be a detachable USB device or bios update that changed bios behavior.

 

PS: could also be new PCI adapter with option rom that hooks and extends int 13.

 

I may propose a simple workaround

if (!BlockSize) BlockSize = 512;

We should check alignment produced by different compilers.

Sound good. I suggest Micky1979 test it before commit to see what it does to this device. At first he said it's compiler-dependent (which it shouldn't be). But now it looks like crash is also on GCC. So just device-dependent or bios-dependent.

  • Like 1
Link to comment
Share on other sites

Could be a detachable USB device or bios update that changed bios behavior.

 

PS: could also be new PCI adapter with option rom that hooks and extends int 13.

Was tested on HD too but still the same. Only I have a new Samsung 850 Pro ssd :huh: .. bios is the same (I'm not excluding that an update can fix it, just lazy because I don't have any Windows installation to update with the standalone installer made by HP)

I may propose a simple workaround

if (!BlockSize) BlockSize = 512;

We should check alignment produced by different compilers.

Ok going to try, I don't know if I have all the time to test during my lunch break (now), otherwise let you know in 3/4 hours

 

PS The good is that is not an Xcode fault  :wink_anim:

Link to comment
Share on other sites

Guys the workaround ...works! :)

0:722  0:263  BlokSize was = 0, now is 512

I've created a function like that:

//
// test http://www.insanelymac.com/forum/topic/306156-clover-bugissue-report-and-patch/page-38#entry2237282
//
UINTN SanitizeBlockSize( UINTN BS )
{
    if (!BS || BS != 512 || BS != 4096)
    {
        DBG("BlokSize was = %d, now is 512\n", BS);
        return 512 /* 4096 ? */;
    }
    
    return BS;
}

BlockSize = SanitizeBlockSize( Media->BlockSize );

bdmesg:

Last login: Wed May 11 18:49:15 on ttys000
/Users/Micky1979/Desktop/bdmesg ; exit;
Micky1979s-MBP:~ Micky1979$ /Users/Micky1979/Desktop/bdmesg ; exit;
0:100  0:100  MemLog inited, TSC freq: 2494334304
0:100  0:000  LegacyRegion2: Chipset/proc: 0x01548086
0:100  0:000   Next Generation Core processors (PAM 0x80-0x86)
0:100  0:000   Test PAM1=(0x41=90, 0x5a=90, 0x81=11, 0x91=00) at chipset 01548086
0:100  0:000  , Install = Success
0:113  0:013  VGA Pci.Hdr.Command=6 - not enabled
0:113  0:000  BiosVideoDriverBindingStart!
0:113  0:000  BiosVideoCheckForVbe
0:113  0:000  EdidOverride not found
0:125  0:012   Edid1+
0:125  0:000   found Detail Timing 1600x900
0:125  0:000  timing string after 0xFE:AUO
         
0:125  0:000  timing string after 0xFE:B173RW01 V3 

0:138  0:012   Edid0+
0:138  0:000   found Detail Timing 1600x900
0:138  0:000  ... already present
0:138  0:000  timing string after 0xFE:AUO
         
0:138  0:000  timing string after 0xFE:B173RW01 V3 

0:139  0:001     0 1024x768 attr=9B - ok, edid-, 1024x768, working, highest, pref=0
0:139  0:000     1 640x480 attr=9B - ok, edid-, 640x480, working
0:139  0:000     2 800x600 attr=9B - ok, edid-, 800x600, working
0:139  0:000     3 1600x900 attr=9B - ok, edid+, working, highest, pref=3
0:139  0:000  BV new mode: 3 1600x900
0:281  0:141   SetMode pref 3 (3) = Success
0:281  0:000  VGA Pci.Hdr.Command=6 - not enabled
0:381  0:099  VGA Pci.Hdr.Command=6 - not enabled
0:388  0:007  VGA Pci.Hdr.Command=6 - not enabled
0:390  0:001  Found supported controller for BiosBlockIO class=010400
0:390  0:000  Int13Extensions: INT 13 41 DL=80 : CF=0 BX=AA55 CX=0005
0:390  0:000  GetDriveParameters: INT 13 48 DL=80 : CF=0 AH=00
0:390  0:000  BlockSize = 512  LastBlock = 500118191
0:390  0:000  Int13Extensions: INT 13 41 DL=81 : CF=0 BX=AA55 CX=0005
0:390  0:000  GetDriveParameters: INT 13 48 DL=81 : CF=0 AH=00
0:390  0:000  BlockSize = 512  LastBlock = 30702591
0:390  0:000  Int13Extensions: INT 13 41 DL=82 : CF=0 BX=AA55 CX=0005
0:390  0:000  GetDriveParameters: INT 13 48 DL=82 : CF=0 AH=00
0:390  0:000  BlockSize = 512  LastBlock = 234441647
0:391  0:001  Int13Extensions: INT 13 41 DL=A0 : CF=0 BX=AA55 CX=0005
0:391  0:000  GetDriveParameters: INT 13 48 DL=A0 : CF=0 AH=00
0:391  0:000  BlockSize = 0  LastBlock = -1
0:396  0:004  BlokSize was = 512, now is 512
0:396  0:000  BlokSize was = 512, now is 512
0:396  0:000  BlokSize was = 512, now is 512
0:396  0:000  BlokSize was = 512, now is 512
0:396  0:000  BlokSize was = 512, now is 512
0:396  0:000  BlokSize was = 512, now is 512
0:397  0:000  BlokSize was = 512, now is 512
0:397  0:000  BlokSize was = 512, now is 512
0:397  0:000  BlokSize was = 512, now is 512
0:397  0:000  BlokSize was = 512, now is 512
0:397  0:000  BlokSize was = 512, now is 512
0:398  0:000  BlokSize was = 512, now is 512
0:398  0:000  BlokSize was = 512, now is 512
0:398  0:000  BlokSize was = 512, now is 512
0:398  0:000  BlokSize was = 512, now is 512
0:402  0:003  BlokSize was = 512, now is 512
0:402  0:000  BlokSize was = 512, now is 512
0:402  0:000  BlokSize was = 512, now is 512
0:402  0:000  BlokSize was = 512, now is 512
0:402  0:000  BlokSize was = 512, now is 512
0:402  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:410  0:000  BlokSize was = 512, now is 512
0:411  0:000  BlokSize was = 512, now is 512
0:412  0:000  BlokSize was = 512, now is 512
0:413  0:001  BlokSize was = 512, now is 512
0:414  0:000  BlokSize was = 512, now is 512
0:416  0:001  BlokSize was = 512, now is 512
0:418  0:001  BlokSize was = 512, now is 512
0:418  0:000  BlokSize was = 512, now is 512
0:419  0:000  BlokSize was = 512, now is 512
0:420  0:000  BlokSize was = 512, now is 512
0:421  0:000  BlokSize was = 512, now is 512
0:422  0:000  BlokSize was = 512, now is 512
0:423  0:000  BlokSize was = 512, now is 512
0:424  0:000  BlokSize was = 512, now is 512
0:428  0:004  BlokSize was = 512, now is 512
0:429  0:000  BlokSize was = 512, now is 512
0:430  0:000  BlokSize was = 512, now is 512
0:430  0:000  BlokSize was = 512, now is 512
0:431  0:001  BlokSize was = 512, now is 512
0:432  0:000  BlokSize was = 512, now is 512
0:433  0:000  BlokSize was = 512, now is 512
0:434  0:000  BlokSize was = 512, now is 512
0:436  0:002  BlokSize was = 512, now is 512
0:438  0:002  BlokSize was = 512, now is 512
0:439  0:001  BlokSize was = 512, now is 512
0:441  0:002  BlokSize was = 512, now is 512
0:442  0:000  BlokSize was = 512, now is 512
0:442  0:000  BlokSize was = 512, now is 512
0:442  0:000  BlokSize was = 512, now is 512
0:442  0:000  BlokSize was = 512, now is 512
0:442  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:447  0:003  BlokSize was = 512, now is 512
0:447  0:000  BlokSize was = 512, now is 512
0:447  0:000  BlokSize was = 512, now is 512
0:447  0:000  BlokSize was = 512, now is 512
0:447  0:000  BlokSize was = 512, now is 512
0:448  0:000  BlokSize was = 512, now is 512
0:448  0:000  BlokSize was = 512, now is 512
0:448  0:000  BlokSize was = 512, now is 512
0:448  0:000  BlokSize was = 512, now is 512
0:448  0:000  BlokSize was = 512, now is 512
0:458  0:009  VGA Pci.Hdr.Command=6 - not enabled
0:722  0:263  BlokSize was = 0, now is 512
0:722  0:000  BlokSize was = 512, now is 512
0:722  0:000  BlokSize was = 512, now is 512
0:722  0:000  BlokSize was = 512, now is 512
0:723  0:000  BlokSize was = 512, now is 512
0:723  0:000  BlokSize was = 512, now is 512
0:724  0:000  BlokSize was = 512, now is 512
0:724  0:000  BlokSize was = 512, now is 512
0:724  0:000  BlokSize was = 512, now is 512
0:725  0:000  BlokSize was = 512, now is 512
0:725  0:000  BlokSize was = 512, now is 512
0:725  0:000  BlokSize was = 512, now is 512
0:725  0:000  BlokSize was = 512, now is 512
0:726  0:000  BlokSize was = 512, now is 512
0:726  0:000  BlokSize was = 512, now is 512
0:728  0:002  BlokSize was = 512, now is 512
0:729  0:000  
0:729  0:000  Now is 11.5.2016,  16:48:42 (GMT)
0:729  0:000  Starting Clover rev 3513 on CLOVER EFI
0:729  0:000  Build with: [Args: ./ebuild.sh -xcode5 -mc --no-usb | Command: build -D DISABLE_USB_SUPPORT -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -D CLANG -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE5 -n 5 | OS: 10.11.5 | XCODE: 7.3.1]
0:729  0:000  SelfDevicePath=PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(1,GPT,0EC12D22-4440-45F3-8D5E-E391C997B42F,0x28,0x64000) @1F82A318
0:729  0:000  SelfDirPath = \EFI\CLOVER
0:729  0:000  BlokSize was = 512, now is 512
0:729  0:000  BlokSize was = 512, now is 512
0:730  0:000  BlokSize was = 512, now is 512
0:730  0:000  Total Memory Slots Count = 2
0:730  0:000  Type 17 Index = 0
0:730  0:000  Table has error information, checking
0:730  0:000  Found memory information in table 18/0, type=0x3, operation=0x2 syndrome=0x0
0:730  0:000  ...memory OK
0:730  0:000  SmbiosTable.Type17->Speed = 1600MHz
0:730  0:000  SmbiosTable.Type17->Size = 4096MB
0:730  0:000  SmbiosTable.Type17->Bank/Device = BANK 0 Bottom-Slot 1(top)
0:730  0:000  SmbiosTable.Type17->Vendor = Micron Technology
0:730  0:000  SmbiosTable.Type17->SerialNumber = EA70D331
0:730  0:000  SmbiosTable.Type17->PartNumber = 16KTF51264HZ-1G6M1
0:730  0:000  Type 17 Index = 1
0:730  0:000  Table has error information, checking
0:730  0:000  Found memory information in table 18/1, type=0x3, operation=0x2 syndrome=0x0
0:730  0:000  ...memory OK
0:730  0:000  SmbiosTable.Type17->Speed = 1600MHz
0:730  0:000  SmbiosTable.Type17->Size = 4096MB
0:730  0:000  SmbiosTable.Type17->Bank/Device = BANK 2 Bottom-Slot 2(under)
0:730  0:000  SmbiosTable.Type17->Vendor = Micron Technology
0:730  0:000  SmbiosTable.Type17->SerialNumber = EA70D32F
0:730  0:000  SmbiosTable.Type17->PartNumber = 16KTF51264HZ-1G6M1
0:730  0:000  Boot status=0
0:730  0:000  Clover revision: 3513  running on HP Pavilion dv7 Notebook PC
0:730  0:000  ... with board 181D
0:730  0:000  CPU Vendor = 756E6547 Model=306A9
0:730  0:000  got cores from CPUID_1 = 0
0:730  0:000  The CPU supported turbo
0:730  0:000  BrandString = Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
0:730  0:000  MSR 0xE2 before patch 1E008404
0:730  0:000  MSR 0xE2 is locked, PM patches will be turned on
0:730  0:000  MSR 0xE4              00020414
0:730  0:000  MSR 0xCE              00080C10_E0011900
0:730  0:000  non-usable FLEX_RATIO = 110000
0:730  0:000  corrected FLEX_RATIO = 100000
0:730  0:000  MSR 0x1B0             00000000
0:730  0:000  FSBFrequency=100MHz DMIvalue=100000kHz
0:730  0:000  Corrected FSBFrequency=100MHz
0:730  0:000  Vendor/Model/Stepping: 0x756E6547/0x3A/0x9
0:730  0:000  Family/ExtFamily: 0x6/0x0
0:730  0:000  MaxDiv/MinDiv: 25.0/12
0:730  0:000  Turbo: 29/29/29/31
0:730  0:000  Features: 0xBFEBFBFF
0:730  0:000  Threads: 4
0:730  0:000  Cores: 2
0:730  0:000  FSB: 100 MHz
0:730  0:000  CPU: 2500 MHz
0:730  0:000  TSC: 2500 MHz
0:730  0:000  PIS: 400 MHz
0:730  0:000  PCI (00|00:00.00) : 8086 0154 class=060000
0:730  0:000  PCI (00|00:01.00) : 8086 0151 class=060400
0:730  0:000  PCI (00|01:00.00) : 10DE 0DE9 class=030000
0:730  0:000  Found NVidia model=HP GeForce GT 630M family #x
0:730  0:000  PCI (00|00:02.00) : 8086 0166 class=030000
0:730  0:000  Found GFX model=Intel HD Graphics 4000
0:730  0:000  PCI (00|00:14.00) : 8086 1E31 class=0C0330
0:730  0:000  PCI (00|00:16.00) : 8086 1E3A class=078000
0:730  0:000  PCI (00|00:1A.00) : 8086 1E2D class=0C0320
0:730  0:000  PCI (00|00:1B.00) : 8086 1E20 class=040300
0:730  0:000  PCI (00|00:1C.00) : 8086 1E10 class=060400
0:730  0:000  PCI (00|00:1C.01) : 8086 1E12 class=060400
0:730  0:000  PCI (00|08:00.00) : 10EC 5229 class=FF0000
0:730  0:000  PCI (00|00:1C.03) : 8086 1E16 class=060400
0:730  0:000  PCI (00|0A:00.00) : 168C 002B class=028000
0:730  0:000  PCI (00|00:1C.05) : 8086 1E1A class=060400
0:731  0:000  PCI (00|0B:00.00) : 10EC 8168 class=020000
0:731  0:000  LAN 0, Vendor=10EC, MMIO=2000
0:731  0:000  PCI (00|00:1D.00) : 8086 1E26 class=0C0320
0:731  0:000  PCI (00|00:1F.00) : 8086 1E57 class=060100
0:731  0:000  PCI (00|00:1F.02) : 8086 282A class=010400
0:731  0:000  PCI (00|00:1F.03) : 8086 1E22 class=0C0500
0:731  0:000  Clover load options size = 0 bytes
0:731  0:000  BlokSize was = 512, now is 512
0:731  0:000  BlokSize was = 512, now is 512
0:731  0:000  BlokSize was = 512, now is 512
0:732  0:000  BlokSize was = 512, now is 512
0:732  0:000  BlokSize was = 512, now is 512
0:732  0:000  BlokSize was = 512, now is 512
0:733  0:000  Using OEM config.plist at path: EFI\CLOVER\config.plist
0:733  0:000  EFI\CLOVER\config.plist loaded: Success
0:733  0:000  BlokSize was = 512, now is 512
0:734  0:000  BlokSize was = 512, now is 512
0:734  0:000  BlokSize was = 512, now is 512
0:734  0:000  Found theme directory: PandoraBlokSize was = 512, now is 512
0:735  0:000  BlokSize was = 512, now is 512
0:735  0:000  BlokSize was = 512, now is 512
0:736  0:000  
0:736  0:000  Found theme directory: embeddedBlokSize was = 512, now is 512
0:736  0:000  BlokSize was = 512, now is 512
0:736  0:000  
0:736  0:000  BlokSize was = 512, now is 512
0:737  0:000  Found theme directory: randomBlokSize was = 512, now is 512
0:737  0:000  
0:737  0:000  Loading early settings
0:737  0:000  timeout set to 5
0:737  0:000  Custom boot CUSTOM_BOOT_DISABLED (0x0)
0:737  0:000  KextsToPatch: 5 requested
0:737  0:000  KextsToPatch 0: IOAHCIBlockStorage (Enable TRIM for SSD) Kext bin patch, data len: 11
0:737  0:000  KextsToPatch 1: AppleUSBXHCIPCI (remove usb limit) Kext bin patch, data len: 7
0:737  0:000  KextsToPatch 2: AppleHDA (Zeroing 11d41984 codec) Kext bin patch, data len: 4
0:737  0:000  KextsToPatch 3: AppleHDA (Patching 11d4198b with 111d76e0 codec) Kext bin patch, data len: 4
0:737  0:000  KextsToPatch 4: AppleHDA (Zeroing 11d41983 codec) Kext bin patch, data len: 4
0:737  0:000  Default theme: Pandora
0:737  0:000  Hiding entries with string Windows
0:737  0:000  Hiding entries with string BOOTX64.EFI
0:737  0:000  LoadDrivers() start
0:737  0:000  BlokSize was = 512, now is 512
0:737  0:000  BlokSize was = 512, now is 512
0:738  0:000  BlokSize was = 512, now is 512
0:738  0:000  BlokSize was = 512, now is 512
0:739  0:000  BlokSize was = 512, now is 512
0:739  0:000  Loading FSInject-64.efi  status=Success
0:739  0:000  LoadDrivers() end
0:739  0:000  Console modes reported: 4, available modes:
0:739  0:000    Mode 1: 80x25
0:739  0:000    Mode 3: 100x31
0:739  0:000    Mode 4: 200x47 (current mode)
0:739  0:000  SetScreenResolution: 1600x900 - already set
0:739  0:000  reinit: self device path=PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(1,GPT,0EC12D22-4440-45F3-8D5E-E391C997B42F,0x28,0x64000)
0:740  0:000  ScanSPD() start
0:740  0:000  SMBus CmdReg: 0x3
0:740  0:000  Scanning SMBus [8086:1E22], mmio: 0xD4615004, ioport: 0x5040, hostc: 0x1
0:740  0:000  Slots to scan [8]...
0:741  0:000  SPD[0]: Type 11 @0x50 
0:760  0:019  Not using XMP because it is not present
0:760  0:000  DDR speed 1600MHz 
0:760  0:000  Slot: 0 Type 24 4096MB 1600MHz Vendor=Micron Technology PartNo=16KTF51264HZ-1G6M1M1 SerialNo=0E0A07000D030301 
0:760  0:000  SPD[2]: Type 11 @0x52 
0:779  0:019  Not using XMP because it is not present
0:779  0:000  DDR speed 1600MHz 
0:779  0:000  Slot: 2 Type 24 4096MB 1600MHz Vendor=Micron Technology PartNo=16KTF51264HZ-1G6M1M1 SerialNo=0E0A07000D03020F 
0:780  0:000  ScanSPD() end
0:780  0:000  Get Acpi Tables List from RSDT:
0:780  0:000   Found table: FACP  SLIC-MPC len=268
0:780  0:000   Found table: UEFI  181D     len=566
0:780  0:000   Found table: ASF!  181D     len=165
0:780  0:000   Found table: HPET  181D     len=56
0:780  0:000   Found table: APIC  181D     len=140
0:780  0:000   Found table: MCFG  181D     len=60
0:780  0:000   Found table: SLIC  SLIC-MPC len=374
0:780  0:000   Found table: WDAT  181D     len=548
0:780  0:000   Found table: SSDT  181D     len=4200
0:780  0:000   Found table: BOOT  181D     len=40
0:780  0:000   Found table: ASPT  181D     len=52
0:780  0:000   Found table: DBGP  181D     len=52
0:780  0:000   Found table: FPDT  181D     len=68
0:780  0:000   Found table: SSDT  181D     len=2408
0:780  0:000   Found table: SSDT  181D     len=2706
0:780  0:000   Found table: SSDT  181D     len=11908
0:780  0:000  Calibrated TSC frequency =2494334304 =2494MHz
0:780  0:000  Loading main settings
0:780  0:000  USB FixOwnership: true
0:780  0:000  Dropping 3 tables
0:780  0:000  Drop table 0 signature="SSDT" (54445353) length=11623(0x1A)
0:780  0:000  set table: 54445353,                0 to drop:
0:780  0:000  Drop table 1 signature="SSDT" (54445353) table-id="CpuPm" (0000006D50757043)
0:780  0:000  set table: 54445353,       6D50757043 to drop:
0:780  0:000  Drop table 2 signature="SSDT" (54445353) table-id="Cpu0Ist" (0074734930757043)
0:780  0:000  set table: 54445353,   74734930757043 to drop:
0:780  0:000  Config set Fixes will override FixMask mask!
0:780  0:000     final mask=00000000
0:780  0:000  Config set EnableC7: -
0:780  0:000  Config set EnableC6: +
0:780  0:000  Config set EnableC4: -
0:780  0:000  Config set EnableC2: -
0:780  0:000  Config set ChassisType=0x8
0:781  0:000  found 14 volumes with blockIO
0:781  0:000   0. Volume:
0:781  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)
0:781  0:000  BlokSize was = 512, now is 512
0:781  0:000    Result of bootcode detection: bootable unknown (legacy)
0:781  0:000   1. Volume:
0:781  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)
0:781  0:000  BlokSize was = 512, now is 512
0:782  0:000    Result of bootcode detection: bootable unknown (legacy)
0:782  0:000   2. Volume:
0:782  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)
0:782  0:000  BlokSize was = 512, now is 512
0:783  0:001   3. Volume:
0:783  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,A0)
0:783  0:000  BlokSize was = 0, now is 512
0:787  0:004   4. Volume:
0:787  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(1,GPT,0EC12D22-4440-45F3-8D5E-E391C997B42F,0x28,0x64000)
0:787  0:000  BlokSize was = 512, now is 512
0:787  0:000    Result of bootcode detection: bootable Clover (clover)
0:787  0:000  BlokSize was = 512, now is 512
0:788  0:000    This is SelfVolume !!
0:788  0:000   5. Volume:
0:788  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(2,GPT,E27BFBDD-9F7E-4CF2-A5B8-8A9F98466AB1,0x64028,0x37E11D8)
0:788  0:000  BlokSize was = 512, now is 512
0:788  0:000   6. Volume:
0:788  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(3,GPT,073BE15C-342B-402B-8785-30D1674D83D6,0x3885200,0x37E11D8)
0:788  0:000  BlokSize was = 512, now is 512
0:788  0:000   7. Volume:
0:788  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(4,GPT,8F1082D2-9984-4358-A5B8-7652C00BE561,0x70A63D8,0x37E11D8)
0:788  0:000  BlokSize was = 512, now is 512
0:788  0:000   8. Volume:
0:788  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(5,GPT,86D154FF-2298-4DB5-B717-DD2677FBD063,0xA8C75B0,0x132B5DB8)
0:788  0:000  BlokSize was = 512, now is 512
0:788  0:000   9. Volume:
0:788  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(6,GPT,000D40C9-3556-46D8-AADD-31F2800CB62F,0x1DB7D368,0x175F20)
0:788  0:000  BlokSize was = 512, now is 512
0:789  0:000  10. Volume:
0:789  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(1,GPT,50B9C0AD-5D56-47C0-99B5-29DAF08A6F9F,0x28,0x64000)
0:789  0:000  BlokSize was = 512, now is 512
0:790  0:000    Result of bootcode detection: bootable Clover (clover)
0:790  0:000  BlokSize was = 512, now is 512
0:792  0:002  BlokSize was = 512, now is 512
0:794  0:002  BlokSize was = 512, now is 512
0:799  0:004  11. Volume:
0:799  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(2,GPT,0B727B72-8227-422F-A3D7-A04127DDF1AA,0x64028,0x1CA3BB0)
0:799  0:000  BlokSize was = 512, now is 512
0:800  0:000  12. Volume:
0:800  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)\HD(1,GPT,973590F2-ED4B-4D0B-9C97-D0923C07B622,0x28,0x64000)
0:800  0:000  BlokSize was = 512, now is 512
0:800  0:000    Result of bootcode detection: bootable unknown (legacy)
0:800  0:000  BlokSize was = 512, now is 512
0:801  0:000  BlokSize was = 512, now is 512
0:801  0:000  13. Volume:
0:801  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)\HD(2,GPT,B241BA4F-327C-414C-AD6D-9A7F0188306A,0x64028,0xDEF0B60)
0:801  0:000  BlokSize was = 512, now is 512
0:801  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:805  0:000  BlokSize was = 512, now is 512
0:805  0:000  BlokSize was = 512, now is 512
0:810  0:004  BlokSize was = 512, now is 512
0:811  0:001  BlokSize was = 512, now is 512
0:812  0:000  BlokSize was = 512, now is 512
0:813  0:001  BlokSize was = 512, now is 512
0:814  0:000  BlokSize was = 512, now is 512
0:815  0:001  BlokSize was = 512, now is 512
0:816  0:000  BlokSize was = 512, now is 512
0:816  0:000  BlokSize was = 512, now is 512
0:816  0:000  BlokSize was = 512, now is 512
0:816  0:000  BlokSize was = 512, now is 512
0:817  0:000  BlokSize was = 512, now is 512
0:817  0:000  BlokSize was = 512, now is 512
0:817  0:000  BlokSize was = 512, now is 512
0:817  0:000  Loading nvram.plist from Vol 'El Capitan' -BlokSize was = 512, now is 512
0:817  0:000   loaded, size=636
0:817  0:000  PutNvramPlistToRtVars ...
0:817  0:000   Adding Key: SystemAudioVolume: Size = 1, Data: 30 
0:817  0:000   Adding Key: SystemAudioVolumeDB: Size = 1, Data: C5 
0:817  0:000   Adding Key: backlight-level: Size = 2, Data: 10 07 
0:817  0:000   Adding Key: bootercfg: Size = 2, Data: 28 00 
0:817  0:000   Adding Key: csr-active-config: Size = 4, Data: 03 00 00 00 
0:817  0:000   Adding Key: fmm-computer-name: Size = 25, Data: 4D 69 63 6B 79 31 39 37 39 E2 80 99 73 20 4D 61 63 42 6F 6F 6B 20 50 72 6F 
0:817  0:000   Adding Key: prev-lang:kbd: Size = 4, Data: 65 6E 3A 30 
0:817  0:000   Adding Key: security-mode: String: Size = 4, Val = 'none'
0:817  0:000  BlokSize was = 512, now is 512
0:818  0:000  Using theme 'Pandora' (EFI\CLOVER\themes\Pandora)
0:818  0:000  OS main and drive as badge
0:822  0:003  Choosing theme Pandora
0:822  0:000  Custom entries start
0:822  0:000  Custom entries finish
0:822  0:000  Scanning loaders...
0:822  0:000   0: 'Whole Disc Boot' no file system
0:822  0:000   1: 'Whole Disc Boot' no file system
0:822  0:000   2: 'Whole Disc Boot' no file system
0:822  0:000   3: 'Whole Disc Boot' no file system
0:822  0:000   4: 'EFI'
0:822  0:000  BlokSize was = 512, now is 512
0:822  0:000  BlokSize was = 512, now is 512
0:823  0:000  BlokSize was = 512, now is 512
0:839  0:016  BlokSize was = 512, now is 512
0:839  0:000  BlokSize was = 512, now is 512
0:840  0:000  BlokSize was = 512, now is 512
0:841  0:000  BlokSize was = 512, now is 512
0:841  0:000  BlokSize was = 512, now is 512
0:842  0:000  BlokSize was = 512, now is 512
0:842  0:000  BlokSize was = 512, now is 512
0:843  0:000  BlokSize was = 512, now is 512
0:843  0:000  BlokSize was = 512, now is 512
0:844  0:000   5: 'Lion'
0:860  0:016   6: 'Yosemite'
0:877  0:016   7: 'Fuji'
0:893  0:016   8: 'El Capitan'
0:893  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:895  0:000  BlokSize was = 512, now is 512
0:895  0:000  BlokSize was = 512, now is 512
0:895  0:000  BlokSize was = 512, now is 512
0:895  0:000      AddLoaderEntry for Volume Name=El Capitan
0:895  0:000  BlokSize was = 512, now is 512
0:895  0:000  BlokSize was = 512, now is 512
0:896  0:000  BlokSize was = 512, now is 512
0:896  0:000  BlokSize was = 512, now is 512
0:896  0:000  BlokSize was = 512, now is 512
0:896  0:000  BlokSize was = 512, now is 512
0:896  0:000  BlokSize was = 512, now is 512
0:897  0:000  BlokSize was = 512, now is 512
0:897  0:000  BlokSize was = 512, now is 512
0:897  0:000      Check if volume Is Hibernated:
0:897  0:000      Check sleep image 'by signature':
0:897  0:000  BlokSize was = 512, now is 512
0:897  0:000  BlokSize was = 512, now is 512
0:897  0:000  BlokSize was = 512, now is 512
0:897  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:899  0:000  BlokSize was = 512, now is 512
0:899  0:000      read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success
0:899  0:000      SleepImage name from pref: ImageVolume = 'El Capitan', ImageName = '\private\var\vm\sleepimage'
0:899  0:000  BlokSize was = 512, now is 512
0:899  0:000  BlokSize was = 512, now is 512
0:899  0:000  BlokSize was = 512, now is 512
0:899  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:901  0:000  BlokSize was = 512, now is 512
0:901  0:000  BlokSize was = 512, now is 512
0:901  0:000  BlokSize was = 512, now is 512
0:901  0:000  BlokSize was = 512, now is 512
0:901  0:000      Reading first 512 bytes of sleepimage ...
0:901  0:000  BlokSize was = 512, now is 512
0:901  0:000   OurBlockIoRead: Lba=D8C7668, Offset=1B18ECD000 (BlockSize=512)
0:901  0:000   sig lion: 0
0:901  0:000   sig snow: 0
0:901  0:000   no valid sleep image offset was found
0:901  0:000      Reading completed -> Success
0:901  0:000       sleepimage offset could not be acquired
0:901  0:000       hibernated: no - sign
0:901  0:000  BlokSize was = 512, now is 512
0:902  0:000    Icon 17 (icons\vol_internal_hfs.icns) not found
0:902  0:000    Theme path EFI\CLOVER\themes\Pandora, ThemeDir=1DB2C820
0:903  0:001  BlokSize was = 512, now is 512
0:904  0:000  BlokSize was = 512, now is 512
0:904  0:000  BlokSize was = 512, now is 512
0:904  0:000  BlokSize was = 512, now is 512
0:921  0:016   9: 'Recovery HD'
0:921  0:000  BlokSize was = 512, now is 512
0:921  0:000      AddLoaderEntry for Volume Name=Recovery HD
0:921  0:000  BlokSize was = 512, now is 512
0:939  0:017  10: 'EFI'
0:939  0:000  BlokSize was = 512, now is 512
0:941  0:002  BlokSize was = 512, now is 512
0:962  0:020  BlokSize was = 512, now is 512
0:964  0:002  BlokSize was = 512, now is 512
0:970  0:005  BlokSize was = 512, now is 512
0:974  0:004  BlokSize was = 512, now is 512
0:978  0:004  BlokSize was = 512, now is 512
0:983  0:004  BlokSize was = 512, now is 512
0:987  0:004  BlokSize was = 512, now is 512
0:991  0:004  BlokSize was = 512, now is 512
0:996  0:004  BlokSize was = 512, now is 512
1:000  0:004  11: 'Pandora Installer'
1:000  0:000  BlokSize was = 512, now is 512
1:001  0:001  BlokSize was = 512, now is 512
1:002  0:001  BlokSize was = 512, now is 512
1:003  0:000  BlokSize was = 512, now is 512
1:004  0:000  BlokSize was = 512, now is 512
1:005  0:000      AddLoaderEntry for Volume Name=Pandora Installer
1:005  0:000  BlokSize was = 512, now is 512
1:006  0:001  BlokSize was = 512, now is 512
1:007  0:000  BlokSize was = 512, now is 512
1:008  0:001      Check if volume Is Hibernated:
1:008  0:000      Check sleep image 'by signature':
1:008  0:000  BlokSize was = 512, now is 512
1:009  0:001  BlokSize was = 512, now is 512
1:010  0:000  BlokSize was = 512, now is 512
1:011  0:001  BlokSize was = 512, now is 512
1:012  0:000  BlokSize was = 512, now is 512
1:013  0:001  BlokSize was = 512, now is 512
1:014  0:000  BlokSize was = 512, now is 512
1:015  0:001  BlokSize was = 512, now is 512
1:016  0:000      read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Not Found
1:016  0:000      using default sleep image name = \private\var\vm\sleepimage
1:016  0:000  BlokSize was = 512, now is 512
1:017  0:001  BlokSize was = 512, now is 512
1:018  0:000  BlokSize was = 512, now is 512
1:019  0:001  BlokSize was = 512, now is 512
1:020  0:000  BlokSize was = 512, now is 512
1:021  0:001  BlokSize was = 512, now is 512
1:021  0:000  BlokSize was = 512, now is 512
1:023  0:001  BlokSize was = 512, now is 512
1:023  0:000  BlokSize was = 512, now is 512
1:024  0:001  BlokSize was = 512, now is 512
1:025  0:000      sleepimage not found -> Not Found
1:025  0:000       hibernated: no - sign
1:042  0:016  12: 'EFI'
1:058  0:015  13: 'DATI'
1:075  0:016  Custom legacy start
1:075  0:000  Custom legacy end
1:075  0:000  Scanning legacy ...
1:075  0:000   0: 'Whole Disc Boot' (legacy) not legacy
1:075  0:000   1: 'Whole Disc Boot' (legacy) not legacy
1:075  0:000   2: 'Whole Disc Boot' (legacy) not legacy
1:075  0:000   3: 'Whole Disc Boot' (legacy) not legacy
1:075  0:000   4: 'EFI' (clover) add legacy
1:077  0:002   added 'Boot Clover from EFI' OSType=3 Icon=clover
1:077  0:000   5: 'Lion' (legacy) not legacy
1:077  0:000   6: 'Yosemite' (legacy) not legacy
1:077  0:000   7: 'Fuji' (legacy) not legacy
1:077  0:000   8: 'El Capitan' (legacy) not legacy
1:077  0:000   9: 'Recovery HD' (legacy) not legacy
1:077  0:000  10: 'EFI' (clover) add legacy
1:079  0:001   added 'Boot Clover from EFI' OSType=3 Icon=clover
1:079  0:000  11: 'Pandora Installer' (legacy) not legacy
1:079  0:000  12: 'EFI' (legacy) not legacy
1:079  0:000  13: 'DATI' (legacy) not legacy
1:079  0:000  Custom tool start
1:079  0:000  Custom tool end
1:079  0:000  BlokSize was = 512, now is 512
1:080  0:000  found tool \EFI\CLOVER\tools\Shell64U.efi
1:080  0:000  Checking EFI partition Volume 4 for Clover
1:080  0:000   Found Clover
1:080  0:000  Use anime=Anim-Clover frames=96
1:080  0:000  Checking EFI partition Volume 10 for Clover
1:080  0:000   Found Clover
1:080  0:000  Use anime=Anim-Clover frames=96
1:080  0:000  Checking EFI partition Volume 12 for Clover
1:082  0:002  GetEfiBootDeviceFromNvram: efi-boot-device-data not found
1:082  0:000  EfiBootVolume not found
1:082  0:000   found entry 0. 'Boot Mac OS X from El Capitan', Volume 'El Capitan', DevicePath 'PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(5,GPT,86D154FF-2298-4DB5-B717-DD2677FBD063,0xA8C75B0,0x132B5DB8)\System\Library\CoreServices\boot.efi'
1:082  0:000  DefaultIndex=0 and MainMenu.EntryCount=12
1:082  0:000  Use anime=Rotary_Logo frames=15
1:090  0:007  BlokSize was = 512, now is 512
1:109  0:019  BlokSize was = 512, now is 512
1:143  0:033  BlokSize was = 512, now is 512
1:143  0:000  BlokSize was = 512, now is 512
1:638  0:494  Found Mouse device:
1:639  0:001  GUI ready
4:639  2:999  BootOption of the entry is empty
4:639  0:000  StartLoader() start
4:639  0:000  Entry->Settings: <null string>
4:639  0:000  Finally: Bus=99773kHz CPU=2494MHz
4:639  0:000  KernelAndKextPatches copyed to started entry
4:639  0:000  Kernel and Kext Patches at 1F7E19D8:
4:639  0:000  	Allowed: y
4:639  0:000  	Debug: n
4:639  0:000  	KernelCpu: n
4:639  0:000  	Lapic: y
4:639  0:000  	Haswell-E: n
4:639  0:000  	AICPUPM: y
4:639  0:000  	AppleRTC: n
4:639  0:000  	KernelPm: y
4:639  0:000  	FakeCPUID: 0x0
4:639  0:000  	ATIController: null
4:639  0:000  	ATIDataLength: 0
4:639  0:000  	0 Kexts to load
4:639  0:000  	5 Kexts to patch
4:639  0:000  	  KextPatch[0]: 11 bytes, IOAHCIBlockStorage
4:639  0:000  	  KextPatch[1]: 7 bytes, AppleUSBXHCIPCI
4:639  0:000  	  KextPatch[2]: 4 bytes, AppleHDA
4:639  0:000  	  KextPatch[3]: 4 bytes, AppleHDA
4:639  0:000  	  KextPatch[4]: 4 bytes, AppleHDA
4:639  0:000  Loading boot.efiBlokSize was = 512, now is 512
4:641  0:002  BlokSize was = 512, now is 512
4:641  0:000  BlokSize was = 512, now is 512
4:641  0:000  BlokSize was = 512, now is 512
4:641  0:000  BlokSize was = 512, now is 512
4:641  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:656  0:000    status=Success
4:743  0:086  GetOSVersion: : 10.11.5
4:743  0:000  insert table 9 for dev 0:0
4:743  0:000  insert table 9 for dev 0:0
4:743  0:000  insert table 9 for dev 0:0
4:744  0:000  Trusting SMBIOS...
4:744  0:000  Detected alternating SMBIOS channel banks
4:744  0:000  Channels: 2
4:744  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:744  0:000   partNum=16KTF51264HZ-1G6M1
4:744  0:000  SMBIOS Type 17 Index = 0 => 0 0:
4:744  0:000  BANK0 DIMM0 1600MHz 4096MB
4:744  0:000   partNum=16KTF51264HZ-1G6M1
4:744  0:000  SMBIOS Type 17 Index = 1 => 1 2:
4:744  0:000  BANK1 DIMM0 1600MHz 4096MB
4:744  0:000  mTotalSystemMemory = 8192
4:744  0:000  NumberOfMemoryDevices = 2
4:744  0:000  Type20[0]->End = 0x3FFFFF, Type17[0] = 0x1000
4:744  0:000  Type20[1]->End = 0x3FFFFF, Type17[1] = 0x3000
4:744  0:000  Table 131 is present, CPUType=11
4:744  0:000  Change to: 604
4:744  0:000  RSDT 0x9AFFE124
4:744  0:000  FADT from RSDT: 0x9AFFB000
4:744  0:000  XSDT 0x9AFFE210
4:744  0:000  FADT from XSDT: 0x9AFFB000
4:744  0:000  Xsdt reallocation done
4:744  0:000  old FADT length=10C
4:744  0:000  BlokSize was = 512, now is 512
4:746  0:002  BlokSize was = 512, now is 512
4:746  0:000  DSDT found in Clover volume OEM folder: EFI\CLOVER\ACPI\patched\DSDT.aml
4:746  0:000  BlokSize was = 512, now is 512
4:747  0:000  BlokSize was = 512, now is 512
4:747  0:000  Apply DsdtFixMask=0x00000000 old way
4:747  0:000     drop _DSM mask=0xFFFF
4:747  0:000  ========= Auto patch DSDT Starting ========
4:747  0:000  VideoCard devID=0xDE910DE
4:747  0:000  DisplayADR1[0] = 0x10000, DisplayADR2[0] = 0x0
4:747  0:000  VideoCard devID=0x1668086
4:747  0:000  DisplayADR1[1] = 0x20000, DisplayADR2[1] = 0xFFFE
4:747  0:000  USBADR[0] = 0x140000 and PCIe = 0xFFFE
4:747  0:000  USBADR[1] = 0x1A0000 and PCIe = 0xFFFE
4:747  0:000  Audio HDA (addr:0x1B0000) setting specified layout-id=3 (0x3)
4:748  0:000  Found Airport Atheros at 0x1C0003, 0x0, DeviceID=0x002B
4:748  0:000  USBADR[2] = 0x1D0000 and PCIe = 0xFFFE
4:748  0:000  first CPU found at 2882 offset 2885
4:748  0:000  score candidate at 287E
4:748  0:000  score inserted in acpi_cpu_score _PR_
4:748  0:000  Found ACPI CPU: CPU0 And CPU1 And CPU2 And CPU3 And CPU4 And CPU5 And CPU6 And CPU7 
  within the score: _PR_
4:748  0:000  Found PCIROOTUID = 0
4:748  0:000  ========= Auto patch DSDT Finished ========
4:748  0:000  Patch table: SSDT  181D    
4:748  0:000   SSDT len = 0x1068
4:748  0:000  Patch table: SSDT  181D    
4:748  0:000   SSDT len = 0x968
4:748  0:000  Patch table: SSDT  181D    
4:748  0:000   SSDT len = 0xA92
4:748  0:000  Patch table: SSDT  181D    
4:748  0:000   SSDT len = 0x2E84
4:748  0:000  Drop tables from Xsdt, SIGN=XXXX TableID= Length=0
4:748  0:000   Xsdt has tables count=16 
4:748  0:000  corrected XSDT length=164
4:748  0:000   CPUBase=0 and ApicCPUBase=1 ApicCPUNum=8
4:748  0:000  Maximum control=0x19
4:748  0:000  Turbo control=0x1F
4:748  0:000  P-States: min 0x7, max 0x1F
4:748  0:000  SSDT with CPU P-States generated successfully
4:748  0:000  SSDT with CPU C-States generated successfully
4:748  0:000  EdidDiscovered size=128
4:748  0:000  00 | 00 FF FF FF FF FF FF 00 06 AF 9E 13 00 00 00 00 
4:748  0:000  16 | 01 13 01 03 80 26 15 78 0A C4 95 9E 57 53 92 26 
4:748  0:000  32 | 0F 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01 
4:748  0:000  48 | 01 01 01 01 01 01 1C 2A 40 6E 61 84 0C 30 30 20 
4:748  0:000  64 | 36 00 7E D6 10 00 00 18 00 00 00 0F 00 00 00 00 
4:748  0:000  80 | 00 00 00 00 00 00 00 00 00 20 00 00 00 FE 00 41 
4:748  0:000  96 | 55 4F 0A 20 20 20 20 20 20 20 20 20 00 00 00 FE 
4:748  0:000  112 | 00 42 31 37 33 52 57 30 31 20 56 33 20 0A 00 24 
4:748  0:000  NVidia GFX injection not set
4:748  0:000  Intel Intel HD Graphics 4000 [8086:0166] :: PcieRoot(0x0)\Pci(0x2,0x0)
4:748  0:000  Intel GFX revision  =0x9
4:749  0:000  USB Controller [8086:1E31] :: PcieRoot(0x0)\Pci(0x14,0x0)
4:749  0:000  USB Controller [8086:1E2D] :: PcieRoot(0x0)\Pci(0x1A,0x0)
4:749  0:000  HDA Controller [8086:1E20] :: PcieRoot(0x0)\Pci(0x1B,0x0) => setting specified layout-id=3 (0x3)
4:749  0:000  LAN Controller [10EC:8168] :: PcieRoot(0x0)\Pci(0x1C,0x5)\Pci(0x0,0x0)
4:749  0:000  USB Controller [8086:1E26] :: PcieRoot(0x0)\Pci(0x1D,0x0)
4:749  0:000   RCBA access disabled; trying to enable
4:749  0:000  stringlength = 2994
4:749  0:000  CurrentMode: Width=1600 Height=900
4:749  0:000  Beginning FSInjection
4:749  0:000  BlokSize was = 512, now is 512
4:750  0:000  BlokSize was = 512, now is 512
FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: 1F81AC98
FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: 1F81AC98
4:751  0:000  MSR 0x1B0   set to        00000000
4:751  0:000  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\Other
4:751  0:000  BlokSize was = 512, now is 512
4:751  0:000    Extra kext: EFI\CLOVER\kexts\Other\ACPIBatteryManager.kext
4:751  0:000  BlokSize was = 512, now is 512
4:752  0:000    Extra kext: EFI\CLOVER\kexts\Other\ApplePS2Controller.kext
4:752  0:000  BlokSize was = 512, now is 512
4:753  0:000  BlokSize was = 512, now is 512
4:753  0:000  BlokSize was = 512, now is 512
4:753  0:000      Extra PlugIn kext: EFI\CLOVER\kexts\Other\ApplePS2Controller.kext\Contents\PlugIns\AppleACPIPS2Nub.kext
4:754  0:000  BlokSize was = 512, now is 512
4:754  0:000      Extra PlugIn kext: EFI\CLOVER\kexts\Other\ApplePS2Controller.kext\Contents\PlugIns\ApplePS2Keyboard.kext
4:754  0:000  BlokSize was = 512, now is 512
4:754  0:000  BlokSize was = 512, now is 512
4:755  0:000      Extra PlugIn kext: EFI\CLOVER\kexts\Other\ApplePS2Controller.kext\Contents\PlugIns\ApplePS2Mouse.kext
4:755  0:000  BlokSize was = 512, now is 512
4:755  0:000  BlokSize was = 512, now is 512
4:756  0:000      Extra PlugIn kext: EFI\CLOVER\kexts\Other\ApplePS2Controller.kext\Contents\PlugIns\ApplePS2Trackpad.kext
4:756  0:000  BlokSize was = 512, now is 512
4:757  0:000  BlokSize was = 512, now is 512
4:757  0:000    Extra kext: EFI\CLOVER\kexts\Other\FakeSMC.kext
4:757  0:000  BlokSize was = 512, now is 512
4:758  0:000  BlokSize was = 512, now is 512
4:759  0:000    Extra kext: EFI\CLOVER\kexts\Other\WifiInjector.kext
4:759  0:000  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\10.11
4:759  0:000    Extra kext: EFI\CLOVER\kexts\10.11\HDAEnabler.kext.12
4:759  0:000  BlokSize was = 512, now is 512
4:760  0:000  BlokSize was = 512, now is 512
4:760  0:000    Extra kext: EFI\CLOVER\kexts\10.11\HDAEnabler3.kext
4:760  0:000  BlokSize was = 512, now is 512
4:761  0:000    Extra kext: EFI\CLOVER\kexts\10.11\EHC.kext
4:761  0:000  BlokSize was = 512, now is 512
4:761  0:000  BlokSize was = 512, now is 512
4:765  0:000    Extra kext: EFI\CLOVER\kexts\10.11\XHC.kext
4:765  0:000  BlokSize was = 512, now is 512
4:769  0:000    Extra kext: EFI\CLOVER\kexts\10.11\RealtekRTL8111.kext
4:769  0:000  BlokSize was = 512, now is 512
4:770  0:001  BlokSize was = 512, now is 512
4:771  0:001  BlokSize was = 512, now is 512
4:776  0:004  Removed efi-boot-device-data variable: Not Found
4:776  0:000  Custom boot screen not used because entry has unset use graphics
4:776  0:000  Closing log

logout
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.

[Processo completato]

BiosBlkIo.h.zip

BiosInt13.c.zip

Edited by Micky1979
build deleted, is not safe (should check only if zero..)
  • Like 1
Link to comment
Share on other sites

 

Guys the workaround ...works! :)

0:722  0:263  BlokSize was = 0, now is 512

I've created a function like that:

//
// test http://www.insanelymac.com/forum/topic/306156-clover-bugissue-report-and-patch/page-38#entry2237282
//
UINTN SanitizeBlockSize( UINTN BS )
{
    if (!BS || BS != 512 || BS != 4096)
    {
        DBG("BlokSize was = %d, now is 512\n", BS);
        return 512 /* 4096 ? */;
    }
    
    return BS;
}

BlockSize = SanitizeBlockSize( Media->BlockSize );

bdmesg:

Last login: Wed May 11 18:49:15 on ttys000
/Users/Micky1979/Desktop/bdmesg ; exit;
Micky1979s-MBP:~ Micky1979$ /Users/Micky1979/Desktop/bdmesg ; exit;
0:100  0:100  MemLog inited, TSC freq: 2494334304
0:100  0:000  LegacyRegion2: Chipset/proc: 0x01548086
0:100  0:000   Next Generation Core processors (PAM 0x80-0x86)
0:100  0:000   Test PAM1=(0x41=90, 0x5a=90, 0x81=11, 0x91=00) at chipset 01548086
0:100  0:000  , Install = Success
0:113  0:013  VGA Pci.Hdr.Command=6 - not enabled
0:113  0:000  BiosVideoDriverBindingStart!
0:113  0:000  BiosVideoCheckForVbe
0:113  0:000  EdidOverride not found
0:125  0:012   Edid1+
0:125  0:000   found Detail Timing 1600x900
0:125  0:000  timing string after 0xFE:AUO
         
0:125  0:000  timing string after 0xFE:B173RW01 V3 

0:138  0:012   Edid0+
0:138  0:000   found Detail Timing 1600x900
0:138  0:000  ... already present
0:138  0:000  timing string after 0xFE:AUO
         
0:138  0:000  timing string after 0xFE:B173RW01 V3 

0:139  0:001     0 1024x768 attr=9B - ok, edid-, 1024x768, working, highest, pref=0
0:139  0:000     1 640x480 attr=9B - ok, edid-, 640x480, working
0:139  0:000     2 800x600 attr=9B - ok, edid-, 800x600, working
0:139  0:000     3 1600x900 attr=9B - ok, edid+, working, highest, pref=3
0:139  0:000  BV new mode: 3 1600x900
0:281  0:141   SetMode pref 3 (3) = Success
0:281  0:000  VGA Pci.Hdr.Command=6 - not enabled
0:381  0:099  VGA Pci.Hdr.Command=6 - not enabled
0:388  0:007  VGA Pci.Hdr.Command=6 - not enabled
0:390  0:001  Found supported controller for BiosBlockIO class=010400
0:390  0:000  Int13Extensions: INT 13 41 DL=80 : CF=0 BX=AA55 CX=0005
0:390  0:000  GetDriveParameters: INT 13 48 DL=80 : CF=0 AH=00
0:390  0:000  BlockSize = 512  LastBlock = 500118191
0:390  0:000  Int13Extensions: INT 13 41 DL=81 : CF=0 BX=AA55 CX=0005
0:390  0:000  GetDriveParameters: INT 13 48 DL=81 : CF=0 AH=00
0:390  0:000  BlockSize = 512  LastBlock = 30702591
0:390  0:000  Int13Extensions: INT 13 41 DL=82 : CF=0 BX=AA55 CX=0005
0:390  0:000  GetDriveParameters: INT 13 48 DL=82 : CF=0 AH=00
0:390  0:000  BlockSize = 512  LastBlock = 234441647
0:391  0:001  Int13Extensions: INT 13 41 DL=A0 : CF=0 BX=AA55 CX=0005
0:391  0:000  GetDriveParameters: INT 13 48 DL=A0 : CF=0 AH=00
0:391  0:000  BlockSize = 0  LastBlock = -1
0:396  0:004  BlokSize was = 512, now is 512
0:396  0:000  BlokSize was = 512, now is 512
0:396  0:000  BlokSize was = 512, now is 512
0:396  0:000  BlokSize was = 512, now is 512
0:396  0:000  BlokSize was = 512, now is 512
0:396  0:000  BlokSize was = 512, now is 512
0:397  0:000  BlokSize was = 512, now is 512
0:397  0:000  BlokSize was = 512, now is 512
0:397  0:000  BlokSize was = 512, now is 512
0:397  0:000  BlokSize was = 512, now is 512
0:397  0:000  BlokSize was = 512, now is 512
0:398  0:000  BlokSize was = 512, now is 512
0:398  0:000  BlokSize was = 512, now is 512
0:398  0:000  BlokSize was = 512, now is 512
0:398  0:000  BlokSize was = 512, now is 512
0:402  0:003  BlokSize was = 512, now is 512
0:402  0:000  BlokSize was = 512, now is 512
0:402  0:000  BlokSize was = 512, now is 512
0:402  0:000  BlokSize was = 512, now is 512
0:402  0:000  BlokSize was = 512, now is 512
0:402  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:403  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:404  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:405  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:406  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:407  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:408  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:409  0:000  BlokSize was = 512, now is 512
0:410  0:000  BlokSize was = 512, now is 512
0:411  0:000  BlokSize was = 512, now is 512
0:412  0:000  BlokSize was = 512, now is 512
0:413  0:001  BlokSize was = 512, now is 512
0:414  0:000  BlokSize was = 512, now is 512
0:416  0:001  BlokSize was = 512, now is 512
0:418  0:001  BlokSize was = 512, now is 512
0:418  0:000  BlokSize was = 512, now is 512
0:419  0:000  BlokSize was = 512, now is 512
0:420  0:000  BlokSize was = 512, now is 512
0:421  0:000  BlokSize was = 512, now is 512
0:422  0:000  BlokSize was = 512, now is 512
0:423  0:000  BlokSize was = 512, now is 512
0:424  0:000  BlokSize was = 512, now is 512
0:428  0:004  BlokSize was = 512, now is 512
0:429  0:000  BlokSize was = 512, now is 512
0:430  0:000  BlokSize was = 512, now is 512
0:430  0:000  BlokSize was = 512, now is 512
0:431  0:001  BlokSize was = 512, now is 512
0:432  0:000  BlokSize was = 512, now is 512
0:433  0:000  BlokSize was = 512, now is 512
0:434  0:000  BlokSize was = 512, now is 512
0:436  0:002  BlokSize was = 512, now is 512
0:438  0:002  BlokSize was = 512, now is 512
0:439  0:001  BlokSize was = 512, now is 512
0:441  0:002  BlokSize was = 512, now is 512
0:442  0:000  BlokSize was = 512, now is 512
0:442  0:000  BlokSize was = 512, now is 512
0:442  0:000  BlokSize was = 512, now is 512
0:442  0:000  BlokSize was = 512, now is 512
0:442  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:443  0:000  BlokSize was = 512, now is 512
0:447  0:003  BlokSize was = 512, now is 512
0:447  0:000  BlokSize was = 512, now is 512
0:447  0:000  BlokSize was = 512, now is 512
0:447  0:000  BlokSize was = 512, now is 512
0:447  0:000  BlokSize was = 512, now is 512
0:448  0:000  BlokSize was = 512, now is 512
0:448  0:000  BlokSize was = 512, now is 512
0:448  0:000  BlokSize was = 512, now is 512
0:448  0:000  BlokSize was = 512, now is 512
0:448  0:000  BlokSize was = 512, now is 512
0:458  0:009  VGA Pci.Hdr.Command=6 - not enabled
0:722  0:263  BlokSize was = 0, now is 512
0:722  0:000  BlokSize was = 512, now is 512
0:722  0:000  BlokSize was = 512, now is 512
0:722  0:000  BlokSize was = 512, now is 512
0:723  0:000  BlokSize was = 512, now is 512
0:723  0:000  BlokSize was = 512, now is 512
0:724  0:000  BlokSize was = 512, now is 512
0:724  0:000  BlokSize was = 512, now is 512
0:724  0:000  BlokSize was = 512, now is 512
0:725  0:000  BlokSize was = 512, now is 512
0:725  0:000  BlokSize was = 512, now is 512
0:725  0:000  BlokSize was = 512, now is 512
0:725  0:000  BlokSize was = 512, now is 512
0:726  0:000  BlokSize was = 512, now is 512
0:726  0:000  BlokSize was = 512, now is 512
0:728  0:002  BlokSize was = 512, now is 512
0:729  0:000  
0:729  0:000  Now is 11.5.2016,  16:48:42 (GMT)
0:729  0:000  Starting Clover rev 3513 on CLOVER EFI
0:729  0:000  Build with: [Args: ./ebuild.sh -xcode5 -mc --no-usb | Command: build -D DISABLE_USB_SUPPORT -D USE_BIOS_BLOCKIO -D USE_LOW_EBDA -D CLANG -p Clover/Clover.dsc -a X64 -b RELEASE -t XCODE5 -n 5 | OS: 10.11.5 | XCODE: 7.3.1]
0:729  0:000  SelfDevicePath=PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(1,GPT,0EC12D22-4440-45F3-8D5E-E391C997B42F,0x28,0x64000) @1F82A318
0:729  0:000  SelfDirPath = \EFI\CLOVER
0:729  0:000  BlokSize was = 512, now is 512
0:729  0:000  BlokSize was = 512, now is 512
0:730  0:000  BlokSize was = 512, now is 512
0:730  0:000  Total Memory Slots Count = 2
0:730  0:000  Type 17 Index = 0
0:730  0:000  Table has error information, checking
0:730  0:000  Found memory information in table 18/0, type=0x3, operation=0x2 syndrome=0x0
0:730  0:000  ...memory OK
0:730  0:000  SmbiosTable.Type17->Speed = 1600MHz
0:730  0:000  SmbiosTable.Type17->Size = 4096MB
0:730  0:000  SmbiosTable.Type17->Bank/Device = BANK 0 Bottom-Slot 1(top)
0:730  0:000  SmbiosTable.Type17->Vendor = Micron Technology
0:730  0:000  SmbiosTable.Type17->SerialNumber = EA70D331
0:730  0:000  SmbiosTable.Type17->PartNumber = 16KTF51264HZ-1G6M1
0:730  0:000  Type 17 Index = 1
0:730  0:000  Table has error information, checking
0:730  0:000  Found memory information in table 18/1, type=0x3, operation=0x2 syndrome=0x0
0:730  0:000  ...memory OK
0:730  0:000  SmbiosTable.Type17->Speed = 1600MHz
0:730  0:000  SmbiosTable.Type17->Size = 4096MB
0:730  0:000  SmbiosTable.Type17->Bank/Device = BANK 2 Bottom-Slot 2(under)
0:730  0:000  SmbiosTable.Type17->Vendor = Micron Technology
0:730  0:000  SmbiosTable.Type17->SerialNumber = EA70D32F
0:730  0:000  SmbiosTable.Type17->PartNumber = 16KTF51264HZ-1G6M1
0:730  0:000  Boot status=0
0:730  0:000  Clover revision: 3513  running on HP Pavilion dv7 Notebook PC
0:730  0:000  ... with board 181D
0:730  0:000  CPU Vendor = 756E6547 Model=306A9
0:730  0:000  got cores from CPUID_1 = 0
0:730  0:000  The CPU supported turbo
0:730  0:000  BrandString = Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz
0:730  0:000  MSR 0xE2 before patch 1E008404
0:730  0:000  MSR 0xE2 is locked, PM patches will be turned on
0:730  0:000  MSR 0xE4              00020414
0:730  0:000  MSR 0xCE              00080C10_E0011900
0:730  0:000  non-usable FLEX_RATIO = 110000
0:730  0:000  corrected FLEX_RATIO = 100000
0:730  0:000  MSR 0x1B0             00000000
0:730  0:000  FSBFrequency=100MHz DMIvalue=100000kHz
0:730  0:000  Corrected FSBFrequency=100MHz
0:730  0:000  Vendor/Model/Stepping: 0x756E6547/0x3A/0x9
0:730  0:000  Family/ExtFamily: 0x6/0x0
0:730  0:000  MaxDiv/MinDiv: 25.0/12
0:730  0:000  Turbo: 29/29/29/31
0:730  0:000  Features: 0xBFEBFBFF
0:730  0:000  Threads: 4
0:730  0:000  Cores: 2
0:730  0:000  FSB: 100 MHz
0:730  0:000  CPU: 2500 MHz
0:730  0:000  TSC: 2500 MHz
0:730  0:000  PIS: 400 MHz
0:730  0:000  PCI (00|00:00.00) : 8086 0154 class=060000
0:730  0:000  PCI (00|00:01.00) : 8086 0151 class=060400
0:730  0:000  PCI (00|01:00.00) : 10DE 0DE9 class=030000
0:730  0:000  Found NVidia model=HP GeForce GT 630M family #x
0:730  0:000  PCI (00|00:02.00) : 8086 0166 class=030000
0:730  0:000  Found GFX model=Intel HD Graphics 4000
0:730  0:000  PCI (00|00:14.00) : 8086 1E31 class=0C0330
0:730  0:000  PCI (00|00:16.00) : 8086 1E3A class=078000
0:730  0:000  PCI (00|00:1A.00) : 8086 1E2D class=0C0320
0:730  0:000  PCI (00|00:1B.00) : 8086 1E20 class=040300
0:730  0:000  PCI (00|00:1C.00) : 8086 1E10 class=060400
0:730  0:000  PCI (00|00:1C.01) : 8086 1E12 class=060400
0:730  0:000  PCI (00|08:00.00) : 10EC 5229 class=FF0000
0:730  0:000  PCI (00|00:1C.03) : 8086 1E16 class=060400
0:730  0:000  PCI (00|0A:00.00) : 168C 002B class=028000
0:730  0:000  PCI (00|00:1C.05) : 8086 1E1A class=060400
0:731  0:000  PCI (00|0B:00.00) : 10EC 8168 class=020000
0:731  0:000  LAN 0, Vendor=10EC, MMIO=2000
0:731  0:000  PCI (00|00:1D.00) : 8086 1E26 class=0C0320
0:731  0:000  PCI (00|00:1F.00) : 8086 1E57 class=060100
0:731  0:000  PCI (00|00:1F.02) : 8086 282A class=010400
0:731  0:000  PCI (00|00:1F.03) : 8086 1E22 class=0C0500
0:731  0:000  Clover load options size = 0 bytes
0:731  0:000  BlokSize was = 512, now is 512
0:731  0:000  BlokSize was = 512, now is 512
0:731  0:000  BlokSize was = 512, now is 512
0:732  0:000  BlokSize was = 512, now is 512
0:732  0:000  BlokSize was = 512, now is 512
0:732  0:000  BlokSize was = 512, now is 512
0:733  0:000  Using OEM config.plist at path: EFI\CLOVER\config.plist
0:733  0:000  EFI\CLOVER\config.plist loaded: Success
0:733  0:000  BlokSize was = 512, now is 512
0:734  0:000  BlokSize was = 512, now is 512
0:734  0:000  BlokSize was = 512, now is 512
0:734  0:000  Found theme directory: PandoraBlokSize was = 512, now is 512
0:735  0:000  BlokSize was = 512, now is 512
0:735  0:000  BlokSize was = 512, now is 512
0:736  0:000  
0:736  0:000  Found theme directory: embeddedBlokSize was = 512, now is 512
0:736  0:000  BlokSize was = 512, now is 512
0:736  0:000  
0:736  0:000  BlokSize was = 512, now is 512
0:737  0:000  Found theme directory: randomBlokSize was = 512, now is 512
0:737  0:000  
0:737  0:000  Loading early settings
0:737  0:000  timeout set to 5
0:737  0:000  Custom boot CUSTOM_BOOT_DISABLED (0x0)
0:737  0:000  KextsToPatch: 5 requested
0:737  0:000  KextsToPatch 0: IOAHCIBlockStorage (Enable TRIM for SSD) Kext bin patch, data len: 11
0:737  0:000  KextsToPatch 1: AppleUSBXHCIPCI (remove usb limit) Kext bin patch, data len: 7
0:737  0:000  KextsToPatch 2: AppleHDA (Zeroing 11d41984 codec) Kext bin patch, data len: 4
0:737  0:000  KextsToPatch 3: AppleHDA (Patching 11d4198b with 111d76e0 codec) Kext bin patch, data len: 4
0:737  0:000  KextsToPatch 4: AppleHDA (Zeroing 11d41983 codec) Kext bin patch, data len: 4
0:737  0:000  Default theme: Pandora
0:737  0:000  Hiding entries with string Windows
0:737  0:000  Hiding entries with string BOOTX64.EFI
0:737  0:000  LoadDrivers() start
0:737  0:000  BlokSize was = 512, now is 512
0:737  0:000  BlokSize was = 512, now is 512
0:738  0:000  BlokSize was = 512, now is 512
0:738  0:000  BlokSize was = 512, now is 512
0:739  0:000  BlokSize was = 512, now is 512
0:739  0:000  Loading FSInject-64.efi  status=Success
0:739  0:000  LoadDrivers() end
0:739  0:000  Console modes reported: 4, available modes:
0:739  0:000    Mode 1: 80x25
0:739  0:000    Mode 3: 100x31
0:739  0:000    Mode 4: 200x47 (current mode)
0:739  0:000  SetScreenResolution: 1600x900 - already set
0:739  0:000  reinit: self device path=PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(1,GPT,0EC12D22-4440-45F3-8D5E-E391C997B42F,0x28,0x64000)
0:740  0:000  ScanSPD() start
0:740  0:000  SMBus CmdReg: 0x3
0:740  0:000  Scanning SMBus [8086:1E22], mmio: 0xD4615004, ioport: 0x5040, hostc: 0x1
0:740  0:000  Slots to scan [8]...
0:741  0:000  SPD[0]: Type 11 @0x50 
0:760  0:019  Not using XMP because it is not present
0:760  0:000  DDR speed 1600MHz 
0:760  0:000  Slot: 0 Type 24 4096MB 1600MHz Vendor=Micron Technology PartNo=16KTF51264HZ-1G6M1M1 SerialNo=0E0A07000D030301 
0:760  0:000  SPD[2]: Type 11 @0x52 
0:779  0:019  Not using XMP because it is not present
0:779  0:000  DDR speed 1600MHz 
0:779  0:000  Slot: 2 Type 24 4096MB 1600MHz Vendor=Micron Technology PartNo=16KTF51264HZ-1G6M1M1 SerialNo=0E0A07000D03020F 
0:780  0:000  ScanSPD() end
0:780  0:000  Get Acpi Tables List from RSDT:
0:780  0:000   Found table: FACP  SLIC-MPC len=268
0:780  0:000   Found table: UEFI  181D     len=566
0:780  0:000   Found table: ASF!  181D     len=165
0:780  0:000   Found table: HPET  181D     len=56
0:780  0:000   Found table: APIC  181D     len=140
0:780  0:000   Found table: MCFG  181D     len=60
0:780  0:000   Found table: SLIC  SLIC-MPC len=374
0:780  0:000   Found table: WDAT  181D     len=548
0:780  0:000   Found table: SSDT  181D     len=4200
0:780  0:000   Found table: BOOT  181D     len=40
0:780  0:000   Found table: ASPT  181D     len=52
0:780  0:000   Found table: DBGP  181D     len=52
0:780  0:000   Found table: FPDT  181D     len=68
0:780  0:000   Found table: SSDT  181D     len=2408
0:780  0:000   Found table: SSDT  181D     len=2706
0:780  0:000   Found table: SSDT  181D     len=11908
0:780  0:000  Calibrated TSC frequency =2494334304 =2494MHz
0:780  0:000  Loading main settings
0:780  0:000  USB FixOwnership: true
0:780  0:000  Dropping 3 tables
0:780  0:000  Drop table 0 signature="SSDT" (54445353) length=11623(0x1A)
0:780  0:000  set table: 54445353,                0 to drop:
0:780  0:000  Drop table 1 signature="SSDT" (54445353) table-id="CpuPm" (0000006D50757043)
0:780  0:000  set table: 54445353,       6D50757043 to drop:
0:780  0:000  Drop table 2 signature="SSDT" (54445353) table-id="Cpu0Ist" (0074734930757043)
0:780  0:000  set table: 54445353,   74734930757043 to drop:
0:780  0:000  Config set Fixes will override FixMask mask!
0:780  0:000     final mask=00000000
0:780  0:000  Config set EnableC7: -
0:780  0:000  Config set EnableC6: +
0:780  0:000  Config set EnableC4: -
0:780  0:000  Config set EnableC2: -
0:780  0:000  Config set ChassisType=0x8
0:781  0:000  found 14 volumes with blockIO
0:781  0:000   0. Volume:
0:781  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)
0:781  0:000  BlokSize was = 512, now is 512
0:781  0:000    Result of bootcode detection: bootable unknown (legacy)
0:781  0:000   1. Volume:
0:781  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)
0:781  0:000  BlokSize was = 512, now is 512
0:782  0:000    Result of bootcode detection: bootable unknown (legacy)
0:782  0:000   2. Volume:
0:782  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)
0:782  0:000  BlokSize was = 512, now is 512
0:783  0:001   3. Volume:
0:783  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,A0)
0:783  0:000  BlokSize was = 0, now is 512
0:787  0:004   4. Volume:
0:787  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(1,GPT,0EC12D22-4440-45F3-8D5E-E391C997B42F,0x28,0x64000)
0:787  0:000  BlokSize was = 512, now is 512
0:787  0:000    Result of bootcode detection: bootable Clover (clover)
0:787  0:000  BlokSize was = 512, now is 512
0:788  0:000    This is SelfVolume !!
0:788  0:000   5. Volume:
0:788  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(2,GPT,E27BFBDD-9F7E-4CF2-A5B8-8A9F98466AB1,0x64028,0x37E11D8)
0:788  0:000  BlokSize was = 512, now is 512
0:788  0:000   6. Volume:
0:788  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(3,GPT,073BE15C-342B-402B-8785-30D1674D83D6,0x3885200,0x37E11D8)
0:788  0:000  BlokSize was = 512, now is 512
0:788  0:000   7. Volume:
0:788  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(4,GPT,8F1082D2-9984-4358-A5B8-7652C00BE561,0x70A63D8,0x37E11D8)
0:788  0:000  BlokSize was = 512, now is 512
0:788  0:000   8. Volume:
0:788  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(5,GPT,86D154FF-2298-4DB5-B717-DD2677FBD063,0xA8C75B0,0x132B5DB8)
0:788  0:000  BlokSize was = 512, now is 512
0:788  0:000   9. Volume:
0:788  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(6,GPT,000D40C9-3556-46D8-AADD-31F2800CB62F,0x1DB7D368,0x175F20)
0:788  0:000  BlokSize was = 512, now is 512
0:789  0:000  10. Volume:
0:789  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(1,GPT,50B9C0AD-5D56-47C0-99B5-29DAF08A6F9F,0x28,0x64000)
0:789  0:000  BlokSize was = 512, now is 512
0:790  0:000    Result of bootcode detection: bootable Clover (clover)
0:790  0:000  BlokSize was = 512, now is 512
0:792  0:002  BlokSize was = 512, now is 512
0:794  0:002  BlokSize was = 512, now is 512
0:799  0:004  11. Volume:
0:799  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(2,GPT,0B727B72-8227-422F-A3D7-A04127DDF1AA,0x64028,0x1CA3BB0)
0:799  0:000  BlokSize was = 512, now is 512
0:800  0:000  12. Volume:
0:800  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)\HD(1,GPT,973590F2-ED4B-4D0B-9C97-D0923C07B622,0x28,0x64000)
0:800  0:000  BlokSize was = 512, now is 512
0:800  0:000    Result of bootcode detection: bootable unknown (legacy)
0:800  0:000  BlokSize was = 512, now is 512
0:801  0:000  BlokSize was = 512, now is 512
0:801  0:000  13. Volume:
0:801  0:000    PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)\HD(2,GPT,B241BA4F-327C-414C-AD6D-9A7F0188306A,0x64028,0xDEF0B60)
0:801  0:000  BlokSize was = 512, now is 512
0:801  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:802  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:803  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:804  0:000  BlokSize was = 512, now is 512
0:805  0:000  BlokSize was = 512, now is 512
0:805  0:000  BlokSize was = 512, now is 512
0:810  0:004  BlokSize was = 512, now is 512
0:811  0:001  BlokSize was = 512, now is 512
0:812  0:000  BlokSize was = 512, now is 512
0:813  0:001  BlokSize was = 512, now is 512
0:814  0:000  BlokSize was = 512, now is 512
0:815  0:001  BlokSize was = 512, now is 512
0:816  0:000  BlokSize was = 512, now is 512
0:816  0:000  BlokSize was = 512, now is 512
0:816  0:000  BlokSize was = 512, now is 512
0:816  0:000  BlokSize was = 512, now is 512
0:817  0:000  BlokSize was = 512, now is 512
0:817  0:000  BlokSize was = 512, now is 512
0:817  0:000  BlokSize was = 512, now is 512
0:817  0:000  Loading nvram.plist from Vol 'El Capitan' -BlokSize was = 512, now is 512
0:817  0:000   loaded, size=636
0:817  0:000  PutNvramPlistToRtVars ...
0:817  0:000   Adding Key: SystemAudioVolume: Size = 1, Data: 30 
0:817  0:000   Adding Key: SystemAudioVolumeDB: Size = 1, Data: C5 
0:817  0:000   Adding Key: backlight-level: Size = 2, Data: 10 07 
0:817  0:000   Adding Key: bootercfg: Size = 2, Data: 28 00 
0:817  0:000   Adding Key: csr-active-config: Size = 4, Data: 03 00 00 00 
0:817  0:000   Adding Key: fmm-computer-name: Size = 25, Data: 4D 69 63 6B 79 31 39 37 39 E2 80 99 73 20 4D 61 63 42 6F 6F 6B 20 50 72 6F 
0:817  0:000   Adding Key: prev-lang:kbd: Size = 4, Data: 65 6E 3A 30 
0:817  0:000   Adding Key: security-mode: String: Size = 4, Val = 'none'
0:817  0:000  BlokSize was = 512, now is 512
0:818  0:000  Using theme 'Pandora' (EFI\CLOVER\themes\Pandora)
0:818  0:000  OS main and drive as badge
0:822  0:003  Choosing theme Pandora
0:822  0:000  Custom entries start
0:822  0:000  Custom entries finish
0:822  0:000  Scanning loaders...
0:822  0:000   0: 'Whole Disc Boot' no file system
0:822  0:000   1: 'Whole Disc Boot' no file system
0:822  0:000   2: 'Whole Disc Boot' no file system
0:822  0:000   3: 'Whole Disc Boot' no file system
0:822  0:000   4: 'EFI'
0:822  0:000  BlokSize was = 512, now is 512
0:822  0:000  BlokSize was = 512, now is 512
0:823  0:000  BlokSize was = 512, now is 512
0:839  0:016  BlokSize was = 512, now is 512
0:839  0:000  BlokSize was = 512, now is 512
0:840  0:000  BlokSize was = 512, now is 512
0:841  0:000  BlokSize was = 512, now is 512
0:841  0:000  BlokSize was = 512, now is 512
0:842  0:000  BlokSize was = 512, now is 512
0:842  0:000  BlokSize was = 512, now is 512
0:843  0:000  BlokSize was = 512, now is 512
0:843  0:000  BlokSize was = 512, now is 512
0:844  0:000   5: 'Lion'
0:860  0:016   6: 'Yosemite'
0:877  0:016   7: 'Fuji'
0:893  0:016   8: 'El Capitan'
0:893  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:894  0:000  BlokSize was = 512, now is 512
0:895  0:000  BlokSize was = 512, now is 512
0:895  0:000  BlokSize was = 512, now is 512
0:895  0:000  BlokSize was = 512, now is 512
0:895  0:000      AddLoaderEntry for Volume Name=El Capitan
0:895  0:000  BlokSize was = 512, now is 512
0:895  0:000  BlokSize was = 512, now is 512
0:896  0:000  BlokSize was = 512, now is 512
0:896  0:000  BlokSize was = 512, now is 512
0:896  0:000  BlokSize was = 512, now is 512
0:896  0:000  BlokSize was = 512, now is 512
0:896  0:000  BlokSize was = 512, now is 512
0:897  0:000  BlokSize was = 512, now is 512
0:897  0:000  BlokSize was = 512, now is 512
0:897  0:000      Check if volume Is Hibernated:
0:897  0:000      Check sleep image 'by signature':
0:897  0:000  BlokSize was = 512, now is 512
0:897  0:000  BlokSize was = 512, now is 512
0:897  0:000  BlokSize was = 512, now is 512
0:897  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:898  0:000  BlokSize was = 512, now is 512
0:899  0:000  BlokSize was = 512, now is 512
0:899  0:000      read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success
0:899  0:000      SleepImage name from pref: ImageVolume = 'El Capitan', ImageName = '\private\var\vm\sleepimage'
0:899  0:000  BlokSize was = 512, now is 512
0:899  0:000  BlokSize was = 512, now is 512
0:899  0:000  BlokSize was = 512, now is 512
0:899  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:900  0:000  BlokSize was = 512, now is 512
0:901  0:000  BlokSize was = 512, now is 512
0:901  0:000  BlokSize was = 512, now is 512
0:901  0:000  BlokSize was = 512, now is 512
0:901  0:000  BlokSize was = 512, now is 512
0:901  0:000      Reading first 512 bytes of sleepimage ...
0:901  0:000  BlokSize was = 512, now is 512
0:901  0:000   OurBlockIoRead: Lba=D8C7668, Offset=1B18ECD000 (BlockSize=512)
0:901  0:000   sig lion: 0
0:901  0:000   sig snow: 0
0:901  0:000   no valid sleep image offset was found
0:901  0:000      Reading completed -> Success
0:901  0:000       sleepimage offset could not be acquired
0:901  0:000       hibernated: no - sign
0:901  0:000  BlokSize was = 512, now is 512
0:902  0:000    Icon 17 (icons\vol_internal_hfs.icns) not found
0:902  0:000    Theme path EFI\CLOVER\themes\Pandora, ThemeDir=1DB2C820
0:903  0:001  BlokSize was = 512, now is 512
0:904  0:000  BlokSize was = 512, now is 512
0:904  0:000  BlokSize was = 512, now is 512
0:904  0:000  BlokSize was = 512, now is 512
0:921  0:016   9: 'Recovery HD'
0:921  0:000  BlokSize was = 512, now is 512
0:921  0:000      AddLoaderEntry for Volume Name=Recovery HD
0:921  0:000  BlokSize was = 512, now is 512
0:939  0:017  10: 'EFI'
0:939  0:000  BlokSize was = 512, now is 512
0:941  0:002  BlokSize was = 512, now is 512
0:962  0:020  BlokSize was = 512, now is 512
0:964  0:002  BlokSize was = 512, now is 512
0:970  0:005  BlokSize was = 512, now is 512
0:974  0:004  BlokSize was = 512, now is 512
0:978  0:004  BlokSize was = 512, now is 512
0:983  0:004  BlokSize was = 512, now is 512
0:987  0:004  BlokSize was = 512, now is 512
0:991  0:004  BlokSize was = 512, now is 512
0:996  0:004  BlokSize was = 512, now is 512
1:000  0:004  11: 'Pandora Installer'
1:000  0:000  BlokSize was = 512, now is 512
1:001  0:001  BlokSize was = 512, now is 512
1:002  0:001  BlokSize was = 512, now is 512
1:003  0:000  BlokSize was = 512, now is 512
1:004  0:000  BlokSize was = 512, now is 512
1:005  0:000      AddLoaderEntry for Volume Name=Pandora Installer
1:005  0:000  BlokSize was = 512, now is 512
1:006  0:001  BlokSize was = 512, now is 512
1:007  0:000  BlokSize was = 512, now is 512
1:008  0:001      Check if volume Is Hibernated:
1:008  0:000      Check sleep image 'by signature':
1:008  0:000  BlokSize was = 512, now is 512
1:009  0:001  BlokSize was = 512, now is 512
1:010  0:000  BlokSize was = 512, now is 512
1:011  0:001  BlokSize was = 512, now is 512
1:012  0:000  BlokSize was = 512, now is 512
1:013  0:001  BlokSize was = 512, now is 512
1:014  0:000  BlokSize was = 512, now is 512
1:015  0:001  BlokSize was = 512, now is 512
1:016  0:000      read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Not Found
1:016  0:000      using default sleep image name = \private\var\vm\sleepimage
1:016  0:000  BlokSize was = 512, now is 512
1:017  0:001  BlokSize was = 512, now is 512
1:018  0:000  BlokSize was = 512, now is 512
1:019  0:001  BlokSize was = 512, now is 512
1:020  0:000  BlokSize was = 512, now is 512
1:021  0:001  BlokSize was = 512, now is 512
1:021  0:000  BlokSize was = 512, now is 512
1:023  0:001  BlokSize was = 512, now is 512
1:023  0:000  BlokSize was = 512, now is 512
1:024  0:001  BlokSize was = 512, now is 512
1:025  0:000      sleepimage not found -> Not Found
1:025  0:000       hibernated: no - sign
1:042  0:016  12: 'EFI'
1:058  0:015  13: 'DATI'
1:075  0:016  Custom legacy start
1:075  0:000  Custom legacy end
1:075  0:000  Scanning legacy ...
1:075  0:000   0: 'Whole Disc Boot' (legacy) not legacy
1:075  0:000   1: 'Whole Disc Boot' (legacy) not legacy
1:075  0:000   2: 'Whole Disc Boot' (legacy) not legacy
1:075  0:000   3: 'Whole Disc Boot' (legacy) not legacy
1:075  0:000   4: 'EFI' (clover) add legacy
1:077  0:002   added 'Boot Clover from EFI' OSType=3 Icon=clover
1:077  0:000   5: 'Lion' (legacy) not legacy
1:077  0:000   6: 'Yosemite' (legacy) not legacy
1:077  0:000   7: 'Fuji' (legacy) not legacy
1:077  0:000   8: 'El Capitan' (legacy) not legacy
1:077  0:000   9: 'Recovery HD' (legacy) not legacy
1:077  0:000  10: 'EFI' (clover) add legacy
1:079  0:001   added 'Boot Clover from EFI' OSType=3 Icon=clover
1:079  0:000  11: 'Pandora Installer' (legacy) not legacy
1:079  0:000  12: 'EFI' (legacy) not legacy
1:079  0:000  13: 'DATI' (legacy) not legacy
1:079  0:000  Custom tool start
1:079  0:000  Custom tool end
1:079  0:000  BlokSize was = 512, now is 512
1:080  0:000  found tool \EFI\CLOVER\tools\Shell64U.efi
1:080  0:000  Checking EFI partition Volume 4 for Clover
1:080  0:000   Found Clover
1:080  0:000  Use anime=Anim-Clover frames=96
1:080  0:000  Checking EFI partition Volume 10 for Clover
1:080  0:000   Found Clover
1:080  0:000  Use anime=Anim-Clover frames=96
1:080  0:000  Checking EFI partition Volume 12 for Clover
1:082  0:002  GetEfiBootDeviceFromNvram: efi-boot-device-data not found
1:082  0:000  EfiBootVolume not found
1:082  0:000   found entry 0. 'Boot Mac OS X from El Capitan', Volume 'El Capitan', DevicePath 'PcieRoot(0x0)\Pci(0x1F,0x2)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(5,GPT,86D154FF-2298-4DB5-B717-DD2677FBD063,0xA8C75B0,0x132B5DB8)\System\Library\CoreServices\boot.efi'
1:082  0:000  DefaultIndex=0 and MainMenu.EntryCount=12
1:082  0:000  Use anime=Rotary_Logo frames=15
1:090  0:007  BlokSize was = 512, now is 512
1:109  0:019  BlokSize was = 512, now is 512
1:143  0:033  BlokSize was = 512, now is 512
1:143  0:000  BlokSize was = 512, now is 512
1:638  0:494  Found Mouse device:
1:639  0:001  GUI ready
4:639  2:999  BootOption of the entry is empty
4:639  0:000  StartLoader() start
4:639  0:000  Entry->Settings: <null string>
4:639  0:000  Finally: Bus=99773kHz CPU=2494MHz
4:639  0:000  KernelAndKextPatches copyed to started entry
4:639  0:000  Kernel and Kext Patches at 1F7E19D8:
4:639  0:000  	Allowed: y
4:639  0:000  	Debug: n
4:639  0:000  	KernelCpu: n
4:639  0:000  	Lapic: y
4:639  0:000  	Haswell-E: n
4:639  0:000  	AICPUPM: y
4:639  0:000  	AppleRTC: n
4:639  0:000  	KernelPm: y
4:639  0:000  	FakeCPUID: 0x0
4:639  0:000  	ATIController: null
4:639  0:000  	ATIDataLength: 0
4:639  0:000  	0 Kexts to load
4:639  0:000  	5 Kexts to patch
4:639  0:000  	  KextPatch[0]: 11 bytes, IOAHCIBlockStorage
4:639  0:000  	  KextPatch[1]: 7 bytes, AppleUSBXHCIPCI
4:639  0:000  	  KextPatch[2]: 4 bytes, AppleHDA
4:639  0:000  	  KextPatch[3]: 4 bytes, AppleHDA
4:639  0:000  	  KextPatch[4]: 4 bytes, AppleHDA
4:639  0:000  Loading boot.efiBlokSize was = 512, now is 512
4:641  0:002  BlokSize was = 512, now is 512
4:641  0:000  BlokSize was = 512, now is 512
4:641  0:000  BlokSize was = 512, now is 512
4:641  0:000  BlokSize was = 512, now is 512
4:641  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:642  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:643  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:644  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:645  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:646  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:647  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:648  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:649  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:650  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:651  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:652  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:653  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:654  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:655  0:000  BlokSize was = 512, now is 512
4:656  0:000    status=Success
4:743  0:086  GetOSVersion: : 10.11.5
4:743  0:000  insert table 9 for dev 0:0
4:743  0:000  insert table 9 for dev 0:0
4:743  0:000  insert table 9 for dev 0:0
4:744  0:000  Trusting SMBIOS...
4:744  0:000  Detected alternating SMBIOS channel banks
4:744  0:000  Channels: 2
4:744  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:744  0:000   partNum=16KTF51264HZ-1G6M1
4:744  0:000  SMBIOS Type 17 Index = 0 => 0 0:
4:744  0:000  BANK0 DIMM0 1600MHz 4096MB
4:744  0:000   partNum=16KTF51264HZ-1G6M1
4:744  0:000  SMBIOS Type 17 Index = 1 => 1 2:
4:744  0:000  BANK1 DIMM0 1600MHz 4096MB
4:744  0:000  mTotalSystemMemory = 8192
4:744  0:000  NumberOfMemoryDevices = 2
4:744  0:000  Type20[0]->End = 0x3FFFFF, Type17[0] = 0x1000
4:744  0:000  Type20[1]->End = 0x3FFFFF, Type17[1] = 0x3000
4:744  0:000  Table 131 is present, CPUType=11
4:744  0:000  Change to: 604
4:744  0:000  RSDT 0x9AFFE124
4:744  0:000  FADT from RSDT: 0x9AFFB000
4:744  0:000  XSDT 0x9AFFE210
4:744  0:000  FADT from XSDT: 0x9AFFB000
4:744  0:000  Xsdt reallocation done
4:744  0:000  old FADT length=10C
4:744  0:000  BlokSize was = 512, now is 512
4:746  0:002  BlokSize was = 512, now is 512
4:746  0:000  DSDT found in Clover volume OEM folder: EFI\CLOVER\ACPI\patched\DSDT.aml
4:746  0:000  BlokSize was = 512, now is 512
4:747  0:000  BlokSize was = 512, now is 512
4:747  0:000  Apply DsdtFixMask=0x00000000 old way
4:747  0:000     drop _DSM mask=0xFFFF
4:747  0:000  ========= Auto patch DSDT Starting ========
4:747  0:000  VideoCard devID=0xDE910DE
4:747  0:000  DisplayADR1[0] = 0x10000, DisplayADR2[0] = 0x0
4:747  0:000  VideoCard devID=0x1668086
4:747  0:000  DisplayADR1[1] = 0x20000, DisplayADR2[1] = 0xFFFE
4:747  0:000  USBADR[0] = 0x140000 and PCIe = 0xFFFE
4:747  0:000  USBADR[1] = 0x1A0000 and PCIe = 0xFFFE
4:747  0:000  Audio HDA (addr:0x1B0000) setting specified layout-id=3 (0x3)
4:748  0:000  Found Airport Atheros at 0x1C0003, 0x0, DeviceID=0x002B
4:748  0:000  USBADR[2] = 0x1D0000 and PCIe = 0xFFFE
4:748  0:000  first CPU found at 2882 offset 2885
4:748  0:000  score candidate at 287E
4:748  0:000  score inserted in acpi_cpu_score _PR_
4:748  0:000  Found ACPI CPU: CPU0 And CPU1 And CPU2 And CPU3 And CPU4 And CPU5 And CPU6 And CPU7 
  within the score: _PR_
4:748  0:000  Found PCIROOTUID = 0
4:748  0:000  ========= Auto patch DSDT Finished ========
4:748  0:000  Patch table: SSDT  181D    
4:748  0:000   SSDT len = 0x1068
4:748  0:000  Patch table: SSDT  181D    
4:748  0:000   SSDT len = 0x968
4:748  0:000  Patch table: SSDT  181D    
4:748  0:000   SSDT len = 0xA92
4:748  0:000  Patch table: SSDT  181D    
4:748  0:000   SSDT len = 0x2E84
4:748  0:000  Drop tables from Xsdt, SIGN=XXXX TableID= Length=0
4:748  0:000   Xsdt has tables count=16 
4:748  0:000  corrected XSDT length=164
4:748  0:000   CPUBase=0 and ApicCPUBase=1 ApicCPUNum=8
4:748  0:000  Maximum control=0x19
4:748  0:000  Turbo control=0x1F
4:748  0:000  P-States: min 0x7, max 0x1F
4:748  0:000  SSDT with CPU P-States generated successfully
4:748  0:000  SSDT with CPU C-States generated successfully
4:748  0:000  EdidDiscovered size=128
4:748  0:000  00 | 00 FF FF FF FF FF FF 00 06 AF 9E 13 00 00 00 00 
4:748  0:000  16 | 01 13 01 03 80 26 15 78 0A C4 95 9E 57 53 92 26 
4:748  0:000  32 | 0F 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01 
4:748  0:000  48 | 01 01 01 01 01 01 1C 2A 40 6E 61 84 0C 30 30 20 
4:748  0:000  64 | 36 00 7E D6 10 00 00 18 00 00 00 0F 00 00 00 00 
4:748  0:000  80 | 00 00 00 00 00 00 00 00 00 20 00 00 00 FE 00 41 
4:748  0:000  96 | 55 4F 0A 20 20 20 20 20 20 20 20 20 00 00 00 FE 
4:748  0:000  112 | 00 42 31 37 33 52 57 30 31 20 56 33 20 0A 00 24 
4:748  0:000  NVidia GFX injection not set
4:748  0:000  Intel Intel HD Graphics 4000 [8086:0166] :: PcieRoot(0x0)\Pci(0x2,0x0)
4:748  0:000  Intel GFX revision  =0x9
4:749  0:000  USB Controller [8086:1E31] :: PcieRoot(0x0)\Pci(0x14,0x0)
4:749  0:000  USB Controller [8086:1E2D] :: PcieRoot(0x0)\Pci(0x1A,0x0)
4:749  0:000  HDA Controller [8086:1E20] :: PcieRoot(0x0)\Pci(0x1B,0x0) => setting specified layout-id=3 (0x3)
4:749  0:000  LAN Controller [10EC:8168] :: PcieRoot(0x0)\Pci(0x1C,0x5)\Pci(0x0,0x0)
4:749  0:000  USB Controller [8086:1E26] :: PcieRoot(0x0)\Pci(0x1D,0x0)
4:749  0:000   RCBA access disabled; trying to enable
4:749  0:000  stringlength = 2994
4:749  0:000  CurrentMode: Width=1600 Height=900
4:749  0:000  Beginning FSInjection
4:749  0:000  BlokSize was = 512, now is 512
4:750  0:000  BlokSize was = 512, now is 512
FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: 1F81AC98
FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: 1F81AC98
4:751  0:000  MSR 0x1B0   set to        00000000
4:751  0:000  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\Other
4:751  0:000  BlokSize was = 512, now is 512
4:751  0:000    Extra kext: EFI\CLOVER\kexts\Other\ACPIBatteryManager.kext
4:751  0:000  BlokSize was = 512, now is 512
4:752  0:000    Extra kext: EFI\CLOVER\kexts\Other\ApplePS2Controller.kext
4:752  0:000  BlokSize was = 512, now is 512
4:753  0:000  BlokSize was = 512, now is 512
4:753  0:000  BlokSize was = 512, now is 512
4:753  0:000      Extra PlugIn kext: EFI\CLOVER\kexts\Other\ApplePS2Controller.kext\Contents\PlugIns\AppleACPIPS2Nub.kext
4:754  0:000  BlokSize was = 512, now is 512
4:754  0:000      Extra PlugIn kext: EFI\CLOVER\kexts\Other\ApplePS2Controller.kext\Contents\PlugIns\ApplePS2Keyboard.kext
4:754  0:000  BlokSize was = 512, now is 512
4:754  0:000  BlokSize was = 512, now is 512
4:755  0:000      Extra PlugIn kext: EFI\CLOVER\kexts\Other\ApplePS2Controller.kext\Contents\PlugIns\ApplePS2Mouse.kext
4:755  0:000  BlokSize was = 512, now is 512
4:755  0:000  BlokSize was = 512, now is 512
4:756  0:000      Extra PlugIn kext: EFI\CLOVER\kexts\Other\ApplePS2Controller.kext\Contents\PlugIns\ApplePS2Trackpad.kext
4:756  0:000  BlokSize was = 512, now is 512
4:757  0:000  BlokSize was = 512, now is 512
4:757  0:000    Extra kext: EFI\CLOVER\kexts\Other\FakeSMC.kext
4:757  0:000  BlokSize was = 512, now is 512
4:758  0:000  BlokSize was = 512, now is 512
4:759  0:000    Extra kext: EFI\CLOVER\kexts\Other\WifiInjector.kext
4:759  0:000  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\10.11
4:759  0:000    Extra kext: EFI\CLOVER\kexts\10.11\HDAEnabler.kext.12
4:759  0:000  BlokSize was = 512, now is 512
4:760  0:000  BlokSize was = 512, now is 512
4:760  0:000    Extra kext: EFI\CLOVER\kexts\10.11\HDAEnabler3.kext
4:760  0:000  BlokSize was = 512, now is 512
4:761  0:000    Extra kext: EFI\CLOVER\kexts\10.11\EHC.kext
4:761  0:000  BlokSize was = 512, now is 512
4:761  0:000  BlokSize was = 512, now is 512
4:765  0:000    Extra kext: EFI\CLOVER\kexts\10.11\XHC.kext
4:765  0:000  BlokSize was = 512, now is 512
4:769  0:000    Extra kext: EFI\CLOVER\kexts\10.11\RealtekRTL8111.kext
4:769  0:000  BlokSize was = 512, now is 512
4:770  0:001  BlokSize was = 512, now is 512
4:771  0:001  BlokSize was = 512, now is 512
4:776  0:004  Removed efi-boot-device-data variable: Not Found
4:776  0:000  Custom boot screen not used because entry has unset use graphics
4:776  0:000  Closing log

logout
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.

[Processo completato]

The system boots normally, but the logs are the same as yours.BootLogZ77.txt.zip

Link to comment
Share on other sites

I see that I have uploaded the gcc6.1 build (because I tried both gcc and xcode build). The big difference is that you don't have any "BlokSize was = 0" like I have, so for you is totally OK. The funcion is called every time a file is read, offcourse should print the log only if the statement is not satisfied. BTW was only for testing purpose.

 

EDIT

Better is to check only for 0 values as Slice an Zenith432 said. (and sorry for "BlokSize" should be "BlockSize" :D )

Link to comment
Share on other sites

@Zenith432 boot log from droples show 2048 bs (as you told me):

0:542  0:009  BlokSize was = 2048, now is 512

(@droples stop using this boot7 (computer will explode, joke :P ha ha), BTW have you some CD/DVD inserted in the ROM drive?)

Link to comment
Share on other sites

Looking better :

 @retval EFI_NO_MEDIA          There is no media in the device.

if (!BlockSize) return EFI_NO_MEDIA;

 

 

..I will try that

 

EDIT

@Slice and @Zenith that really solve my problem at the Edd11BiosReadBlocks func, w/o faking anything.

So existing code is good, just missing a check for devices with no media inside. Compilation and "run" is good with both Xcode 7.3.1 and gcc 6.1  :D

  • Like 1
Link to comment
Share on other sites

Have just been testing the recent DDR4 spd changes, still no joy with SPD scanning:

 

0:132  0:000  ScanSPD() start

0:133  0:000  SMBus CmdReg: 0x1

0:133  0:000  Scanning SMBus [8086:8D22], mmio: 0xFB135004, ioport: 0x580, hostc: 0x1

0:133  0:000  Slots to scan [8]...

0:133  0:000  spd page change error for byte 50:2!

0:134  0:001  ScanSPD() end

 

 The net result is memory still detected as DDR3 (correct module size and speed though). Does anyone understand what the error line means? I have experimented with switching XMP Detection and Trust Smbios on/off but it has no effect 

Link to comment
Share on other sites

I can see a commit in spd.c (3514), tried latest revision?

My, newbie, knowledge of C tells me that the below code should have an expected value, unless it expects anything but 0.
if (c & 4)
{
    DBG("spd page change error for byte %2X:%d!\n", adr, cmd);
    break;
}
Bitwise AND.
operand1 & operand2, expectedAnd
Best regards. :D
Link to comment
Share on other sites

Have just been testing the recent DDR4 spd changes, still no joy with SPD scanning:

 

0:132  0:000  ScanSPD() start

0:133  0:000  SMBus CmdReg: 0x1

0:133  0:000  Scanning SMBus [8086:8D22], mmio: 0xFB135004, ioport: 0x580, hostc: 0x1

0:133  0:000  Slots to scan [8]...

0:133  0:000  spd page change error for byte 50:2!

0:134  0:001  ScanSPD() end

 

 The net result is memory still detected as DDR3 (correct module size and speed though). Does anyone understand what the error line means? I have experimented with switching XMP Detection and Trust Smbios on/off but it has no effect 

DDR4 usually (always?) has a 512 byte spd. Since the SMBus can only address 256 bytes, there is a command to change the page between page 0 (first 256 bytes) and page 1 (second 256 bytes) of the spd's. That error can be ignored if you're not using DDR4. If you are using DDR4 than that's a problem. I think the bigger problem here is that the code can't read your spd at all - it thinks all the slots are empty. Is it possible to have more than one SMBus, and the code is reading from the wrong one?

 

I've googled other results and added yours here too:

Success:      27DA "82801G (ICH7 Family) SMBus Controller"
Success:      2930 "82801I (ICH9 Family) SMBus Controller"
Success:      3A30 "82801JI (ICH10 Family) SMBus Controller"
Fail:         8C44 "Z87 Express Chipset LPC Controller" Lynx Point
Fail:         1D22 "C600/X79 series chipset SMBus Host Controller"
Fail:         1D70 "C600/X79 series chipset SMBus Controller 0"
Fail:         8D22 "C610/X99 series chipset SMBus Controller"
Success:      3b30 "5 Series/3400 Series Chipset SMBus Controller"
Success:      1C22 "6 Series/C200 Series Chipset Family SMBus Controller"
Success:      1E22 "7 Series/C210 Series Chipset Family SMBus Controller"
Success:      8C22 "8 Series/C220 Series Chipset Family SMBus Controller"
Success:      8CA2 "9 Series Chipset Family SMBus Controller"
Success:      A123 "Sunrise Point-H SMBus" (Z170X)
Success: 10DE:0AA2 "MCP79 SMBus"
Does that look like a pattern? Maybe some people here have results that differ from the above?

 

You might try finding an app that can read the spd in Windows, and posting the results here. Thaiphoon Burner can do that http://www.softnology.biz/files.html

It also has a database of many spd's. It might be useful to add an spd override to config.plist, so the spd code in Clover can use that instead of reading the spd itself. It could also be used to test the results of different kinds of spd's (that will help with testing the speed/size calculations, and other information extraction, but not with the physical reading of the spd which is the problem in your case).

 

If an app can read your spd in Windows, then the Clover code needs to be fixed. You'll want to uncomment some of the debug messages in spd.c Maybe add more debug messages. Also examine the SMBus device(s) in your DSDT. Maybe output the register values that spd.c is using. Increase the wait period to longer than 5ms. etc.

 

My, newbie, knowledge of C tells me that the below code should have an expected value, unless it expects anything but 0.

if (c & 4)
Bitwise AND.

 

Yes, it is testing bit 2. The only possible results are 0 and 4. If (...) { } will execute the code in { } for any result that is not 0 (false and NULL are also 0). It does not have to be boolean.

 

 

operand1 & operand2, expectedAnd

 

Where did that come from? Is that part of a compiler warning? Which build method would give that compiler warning? I did not see any warning using ./ebuild.sh

If it's a compiler warning then it can be fixed by changing the expression to ((c&4)!=0)

Link to comment
Share on other sites

DDR4 usually (always?) has a 512 byte spd. Since the SMBus can only address 256 bytes, there is a command to change the page between page 0 (first 256 bytes) and page 1 (second 256 bytes) of the spd's. That error can be ignored if you're not using DDR4. If you are using DDR4 than that's a problem. I think the bigger problem here is that the code can't read your spd at all - it thinks all the slots are empty. Is it possible to have more than one SMBus, and the code is reading from the wrong one?

 

I've googled other results and added yours here too:

 

Success:      27DA "82801G (ICH7 Family) SMBus Controller"
Success:      2930 "82801I (ICH9 Family) SMBus Controller"
Success:      3A30 "82801JI (ICH10 Family) SMBus Controller"
Fail:         8C44 "Z87 Express Chipset LPC Controller" Lynx Point
Fail:         1D22 "C600/X79 series chipset SMBus Host Controller"
Fail:         1D70 "C600/X79 series chipset SMBus Controller 0"
Fail:         8D22 "C610/X99 series chipset SMBus Controller"
Success:      3b30 "5 Series/3400 Series Chipset SMBus Controller"
Success:      1C22 "6 Series/C200 Series Chipset Family SMBus Controller"
Success:      1E22 "7 Series/C210 Series Chipset Family SMBus Controller"
Success:      8C22 "8 Series/C220 Series Chipset Family SMBus Controller"
Success:      8CA2 "9 Series Chipset Family SMBus Controller"
Success:      A123 "Sunrise Point-H SMBus" (Z170X)
Success: 10DE:0AA2 "MCP79 SMBus"
Does that look like a pattern? Maybe some people here have results that differ from the above?

 

You might try finding an app that can read the spd in Windows, and posting the results here. Thaiphoon Burner can do that http://www.softnology.biz/files.html

It also has a database of many spd's. It might be useful to add an spd override to config.plist, so the spd code in Clover can use that instead of reading the spd itself. It could also be used to test the results of different kinds of spd's (that will help with testing the speed/size calculations, and other information extraction, but not with the physical reading of the spd which is the problem in your case).

 

If an app can read your spd in Windows, then the Clover code needs to be fixed. You'll want to uncomment some of the debug messages in spd.c Maybe add more debug messages. Also examine the SMBus device(s) in your DSDT. Maybe output the register values that spd.c is using. Increase the wait period to longer than 5ms. etc.

 

Yes, it is testing bit 2. The only possible results are 0 and 4. If (...) { } will execute the code in { } for any result that is not 0 (false and NULL are also 0). It does not have to be boolean.

 

Where did that come from? Is that part of a compiler warning? Which build method would give that compiler warning? I did not see any warning using ./ebuild.sh

If it's a compiler warning then it can be fixed by changing the expression to ((c&4)!=0)

No, there's no such warning, just general knowledge. I suppose, it wasn't worth mentioning as the problem lays somewhere else.

 

Best regards.

Link to comment
Share on other sites

DDR4 usually (always?) has a 512 byte spd. Since the SMBus can only address 256 bytes, there is a command to change the page between page 0 (first 256 bytes) and page 1 (second 256 bytes) of the spd's. That error can be ignored if you're not using DDR4. If you are using DDR4 than that's a problem. I think the bigger problem here is that the code can't read your spd at all - it thinks all the slots are empty. Is it possible to have more than one SMBus, and the code is reading from the wrong one?

 

I've googled other results and added yours here too:

Success:      27DA "82801G (ICH7 Family) SMBus Controller"
Success:      2930 "82801I (ICH9 Family) SMBus Controller"
Success:      3A30 "82801JI (ICH10 Family) SMBus Controller"
Fail:         8C44 "Z87 Express Chipset LPC Controller" Lynx Point
Fail:         1D22 "C600/X79 series chipset SMBus Host Controller"
Fail:         1D70 "C600/X79 series chipset SMBus Controller 0"
Fail:         8D22 "C610/X99 series chipset SMBus Controller"
Success:      3b30 "5 Series/3400 Series Chipset SMBus Controller"
Success:      1C22 "6 Series/C200 Series Chipset Family SMBus Controller"
Success:      1E22 "7 Series/C210 Series Chipset Family SMBus Controller"
Success:      8C22 "8 Series/C220 Series Chipset Family SMBus Controller"
Success:      8CA2 "9 Series Chipset Family SMBus Controller"
Success:      A123 "Sunrise Point-H SMBus" (Z170X)
Success: 10DE:0AA2 "MCP79 SMBus"
Does that look like a pattern? Maybe some people here have results that differ from the above?

 

 

 

Welcome sir!

 

Fail: 8C44 "Z87 Express Chipset LPC Controller" Lynx Point - LPC is not SMBus.

X79 and X99 chipsets seems have two SMBus controllers. More info needed.

 

Other then that all is OK.

r3520 full working in all modes (deleting 'ReadBlocks' typo at line 447 in BiosInt13.c). I notice, here, that Xcode compile time is a lot faster than GNU's... good

Sorry for typo. Corrected in 3521.

  • Like 1
Link to comment
Share on other sites

X79 and X99 chipsets seems have two SMBus controllers. More info needed.

The ScanSPD function does look for all SMBus controllers, so I would expect to see multiple "Scanning SMBus [8086:..." messages in the log per boot, as long as the class code is 0c0500 and the vendor is 8086 or 10de, but Needy only reported one occurrence.

 

ScanSPD would fail to find an SMBus if it were not a PCI device. Is that possible? If it's not a PCI device, then it could be an ACPI device. You should be able to find all PCI and ACPI devices in the ioreg output (use Terminal.app to create a text file) or in the DSDT (use MaciASL.app to save the system DSDT - maybe use Clover to get a pre patched DSDT and open that in MaciASL.app). Does the Thaiphoon Burner app in Windows show devices on more than one SMBus?

ioreg -w 0 -f -i -l > ioreg.txt

Fail: 8C44 "Z87 Express Chipset LPC Controller" Lynx Point - LPC is not SMBus.

That must have come from Chameleon. The result I googled had a lowercase "c" in 8c44. Clover outputs using uppercase hex for the "Scanning SMBus" debug messages.

Chameleon doesn't use the class code. It uses a list of vendor and device ids.

http://forge.voodooprojects.org/p/chameleon/source/commit/2658/

The LPC has a class code of 060100. I googled the following

"device-id = <448c0000>" "vendor-id = <86800000>"
to find an ioreg with that device. The result shows that it uses the 8c22 SMBus PCI device with the correct class code.

 

I googled for an ioreg of the other failed devices but found nothing.

"device-id = <221d0000>" "vendor-id = <86800000>"
"device-id = <701d0000>" "vendor-id = <86800000>"
"device-id = <228d0000>" "vendor-id = <86800000>"
Then I googled using pci name patterns "pci8086,1d22", "pci8086,1d70", "pci8086,8d22" and found some Oracle System Configuration dumps but I don't know if they're useful. A couple of them had both a 1d70 and a 1d22 which makes sense since they're part of the same chipset. Another had three 35ae with compatible as 1d70, 1d71, 1d22. Another had two pci15d9,628. 15d9 is not a vendor ID that Clover looks for but it's unlikely that the vendor would be any other than 8086...

 

Like Slice said, More info needed.

  • Like 1
Link to comment
Share on other sites

@joevt and slice

Thanks for looking into the spd error. I can confirm that lspci shows only one smbus controller on my x99 chipset:

 

00:1f.3 SMBus [0c05]: Intel Corporation C610/X99 series chipset SMBus Controller [8086:8d22] (rev 05)

Subsystem: ASUSTeK Computer Inc. Device [1043:8600]

Control: I/O+ Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-

Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-

Interrupt: pin C routed to IRQ 18

Region 0: Memory at fb135000 (64-bit, non-prefetchable) [disabled]

Region 4: I/O ports at 0580

 

Thaiphoon burner app in windows does read the spd (below is the report from one of four identical modules):

 

Prepared by Thaiphoon Burner Super Blaster

-------------------------------------------------------------
                         MEMORY MODULE
-------------------------------------------------------------
Manufacturer             : Corsair
Part Number              : CMD32GX4M4A2666C16
Serial Number            : 00000000
JEDEC DIMM Label         : 8GB 2Rx8 PC4-2133-UB0-10
Architecture             : DDR4 SDRAM UDIMM
Speed Grade              : DDR4-2133
Capacity                 : 8192 MB
Organization             : 1024M x64 (2 ranks)
Register Manufacturer    : N/A
Register Model           : N/A
Manufacturing Date       : Undefined
Manufacturing Location   : Unknown: 00h
Revision                 : 0000h
-------------------------------------------------------------
                         DRAM COMPONENT
-------------------------------------------------------------
Manufacturer             : Undefined
Part Number              : Not determined
Package                  : Standard Monolithic 78-ball FBGA
Die Density / Dies Count : 4 Gb / 1 die
Composition              : 512M x8 (32M x8 x 16 banks)
Clock Frequency          : 1067 MHz (0.938 ns)
Minimum Timing Delays    : 15-15-15-36-50
Read Latencies Supported : 16T, 15T, 14T, 13T, 12T, 11T, 10T
Supply Voltage           : 1.20 V
XMP Certified            : 1333 MHz / 16-18-18-35-53 / 1.20 V
XMP Extreme              : 1401 MHz / 16-18-18-37-55 / 1.35 V
SPD Revision             : 1.0 / January 2014
XMP Revision             : 2.0 / December 2013
-------------------------------------------------------------
                         SOURCE SPD DUMP
-------------------------------------------------------------
000  23 10 0C 02 84 19 00 08 00 00 00 03 09 03 00 00
010  00 00 08 0C FC 03 00 00 6C 6C 6C 11 08 74 20 08
020  00 05 70 03 00 B8 1E 2B 2B 00 00 00 00 00 00 00
030  00 00 00 00 00 00 00 00 00 00 00 00 16 36 16 36
040  16 36 16 36 00 00 2B 0C 2B 0C 2B 0C 2B 0C 00 00
050  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
060  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
070  00 00 00 00 00 ED B5 CF 00 00 00 00 00 C2 C9 3A
080  11 11 01 01 00 00 00 00 00 00 00 00 00 00 00 00
090  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0C0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0F0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 DE 27
100  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
110  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
120  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
130  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
140  02 9E 00 00 00 00 00 00 00 43 4D 44 33 32 47 58
150  34 4D 34 41 32 36 36 36 43 31 36 20 20 00 00 00
160  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
170  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
180  0C 4A 03 20 00 00 00 00 00 94 00 00 06 F4 03 04
190  00 60 6C 6C 10 D1 3E 20 08 00 05 70 03 00 A8 1E
1A0  30 00 00 00 00 00 00 00 00 F6 F6 F6 F6 F6 F6 00
1B0  00 00 00 00 00 00 00 00 A3 00 00 06 F4 03 04 00
1C0  5C 67 67 10 D3 3B 20 08 00 05 70 03 00 B0 23 2E
1D0  00 00 00 00 00 00 00 00 CE A1 8D DD DD B0 DC 00
1E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
1F0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

 

The x99 asus dsdt entry for the smbus controller is simply:

 

Device (SBUS)

{

  Name (_ADR, 0x001F0003// _ADR: Address           

}

 

In the ioreg Device (SBUS) shows up under the PCI root

 

Let me know if you need more info...

Link to comment
Share on other sites

Thaiphoon burner app in windows does read the spd

The spd looks good. All the DDR4 information is there.

 

The x99 asus dsdt entry for the smbus controller is simply:

 

Device (SBUS)

{

  Name (_ADR, 0x001F0003// _ADR: Address           

}

The SBUS Device in dsdt seems lacking. Aren't there any Method or Field or OperationRegion statements? Mine has methods for reading and writing to the SMBus. Did you check for differences between the dsdt saved by Clover (using F4) and the system dsdt?

 

In the ioreg Device (SBUS) shows up under the PCI root

 

Let me know if you need more info...

A full dsdt from Clover and the ioreg might be useful. You can attach a zip file.

Link to comment
Share on other sites

×
×
  • Create New...