sebinouse Posted September 4, 2015 Share Posted September 4, 2015 What's your Clover version ? I tried : - r3258 - r3259 - r3262 Link to comment Share on other sites More sharing options...
Pike R. Alpha Posted September 4, 2015 Share Posted September 4, 2015 I don't want to have Csr 0x00 ... I just want custom kext in S/L/E and kext injection from EFI/C/k/10.11. Csr 0x01, 0x03, 0x67 ... give me the same result : No actual injection from EFI/Clover/kext/10.11/ even if boot log shows them ! Injection works only if System/Library/PrelinkedKernels/prelinkedkernel has been made with Csr 0x00 ... is that normal ? Read this: https://pikeralpha.wordpress.com/2015/09/04/lzvn-with-kextsdictionary-extraction/ LZVN can extract the kexts, kernel and dictionary from your prelinkedkernel. Just download, compile and run it to see what's inside. 2 Link to comment Share on other sites More sharing options...
cecekpawon Posted September 5, 2015 Share Posted September 5, 2015 Which one is it? None of them has "boot-display" You never have (boot-display) if you never set it. I've no idea why your nvidia ioreg port values just simple like that.. Is that bad/damaged gpu card, or disabled nv drivers? I dont know this is this the right place to discuss it here, or rebump old topic here. Just before you go make sure you already done backup your clean (working) clover config since it inject properties to registry and can be end with bad results. ** how to spoiler this long text? # Get gfxutil, eg from darwindumper here (https://bitbucket.org/blackosx/darwindumper/downloads) cd ~/Desktop && cp ~/Downloads/DarwinDumper_v2.9.8/DarwinDumper.app/Contents/Resources/Tools/gfxutil . # skip this step if you never set devices properties before ioreg -lw0 -p IODeviceTree -n efi -r -x | grep device-properties | sed 's/.*<//;s/>.*//;' > device-properties.hex && ./gfxutil -s -n -i hex -o xml device-properties.hex device-properties.xml # edit / make new device properties xml (3 ports) # value can be <string> or <data> (base64), convert here (https://blog.thrsh.net/osx86.html) <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>PciRoot(0x0)/Pci(0x1,0x0)/Pci(0x0,0x0)</key> <dict> <!-- Primary display --> <key>@2,AAPL,boot-display</key> <string>0x00000001</string> <!-- Optional: set type as HDMI --> <key>@2,connector-type</key> <string>0x00000800</string> <!-- start: regular values --> <key>@0,compatible</key> <string>NVDA,NVMac</string> <key>@0,device_type</key> <string>display</string> <key>@0,name</key> <string>NVDA,Display-A</string> <key>@1,compatible</key> <string>NVDA,NVMac</string> <key>@1,device_type</key> <string>display</string> <key>@1,name</key> <string>NVDA,Display-B</string> <key>@2,compatible</key> <string>NVDA,NVMac</string> <key>@2,device_type</key> <string>display</string> <key>@2,name</key> <string>NVDA,Display-C</string> <key>VRAM,totalsize</key> <string>0x40000000</string> <key>device_type</key> <string>NVDA,Parent</string> <key>model</key> <string>Nvidia GeForce GTX 650</string> <key>rom-revision</key> <string>80.07.35.00.0B</string> <!-- end: regular values --> </dict> </dict> </plist> # add another additional port if you got black screen, eg (4 ports): <key>@3,compatible</key> <string>NVDA,NVMac</string> <key>@3,device_type</key> <string>display</string> <key>@3,name</key> <string>NVDA,Display-D</string> # and experimental set active port, where x can be: 0 to (total ports - 1) <!-- Primary display --> <key>@x,AAPL,boot-display</key> <string>0x00000001</string> # with nvdia webdriver even more simple, just add (1/2 properties) below to device properties (with injectnvidia=no) <!-- Primary display --> <key>@x,AAPL,boot-display</key> <string>0x00000001</string> <!-- Optional: set type as HDMI --> <key>@x,connector-type</key> # after all done, convert xml to bin, and copy paste to clover properties & set "inject" to ON ./gfxutil -i xml -o hex device-properties.xml device-properties.hex && echo $'---' && cat device-properties.hex && echo $'\n---' 2 Link to comment Share on other sites More sharing options...
arsradu Posted September 5, 2015 Share Posted September 5, 2015 You never have (boot-display) if you never set it. I've no idea why your nvidia ioreg port values just simple like that.. Is that bad/damaged gpu card, or disabled nv drivers? I dont know this is this the right place to discuss it here, or rebump old topic here. Just before you go make sure you already done backup your clean (working) clover config since it inject properties to registry and can be end with bad results. ** how to spoiler this long text? # Get gfxutil, eg from darwindumper here (https://bitbucket.org/blackosx/darwindumper/downloads) cd ~/Desktop && cp ~/Downloads/DarwinDumper_v2.9.8/DarwinDumper.app/Contents/Resources/Tools/gfxutil . # skip this step if you never set devices properties before ioreg -lw0 -p IODeviceTree -n efi -r -x | grep device-properties | sed 's/.*<//;s/>.*//;' > device-properties.hex && ./gfxutil -s -n -i hex -o xml device-properties.hex device-properties.xml # edit / make new device properties xml (3 ports) # value can be <string> or <data> (base64), convert here (https://blog.thrsh.net/osx86.html) <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>PciRoot(0x0)/Pci(0x1,0x0)/Pci(0x0,0x0)</key> <dict> <!-- Primary display --> <key>@2,AAPL,boot-display</key> <string>0x00000001</string> <!-- Optional: set type as HDMI --> <key>@2,connector-type</key> <string>0x00000800</string> <!-- start: regular values --> <key>@0,compatible</key> <string>NVDA,NVMac</string> <key>@0,device_type</key> <string>display</string> <key>@0,name</key> <string>NVDA,Display-A</string> <key>@1,compatible</key> <string>NVDA,NVMac</string> <key>@1,device_type</key> <string>display</string> <key>@1,name</key> <string>NVDA,Display-B</string> <key>@2,compatible</key> <string>NVDA,NVMac</string> <key>@2,device_type</key> <string>display</string> <key>@2,name</key> <string>NVDA,Display-C</string> <key>VRAM,totalsize</key> <string>0x40000000</string> <key>device_type</key> <string>NVDA,Parent</string> <key>model</key> <string>Nvidia GeForce GTX 650</string> <key>rom-revision</key> <string>80.07.35.00.0B</string> <!-- end: regular values --> </dict> </dict> </plist> # add another additional port if you got black screen, eg (4 ports): <key>@3,compatible</key> <string>NVDA,NVMac</string> <key>@3,device_type</key> <string>display</string> <key>@3,name</key> <string>NVDA,Display-D</string> # and experimental set active port, where x can be: 0 to (total ports - 1) <!-- Primary display --> <key>@x,AAPL,boot-display</key> <string>0x00000001</string> # with nvdia webdriver even more simple, just add (1/2 properties) below to device properties (with injectnvidia=no) <!-- Primary display --> <key>@x,AAPL,boot-display</key> <string>0x00000001</string> <!-- Optional: set type as HDMI --> <key>@x,connector-type</key> # after all done, convert xml to bin, and copy paste to clover properties & set "inject" to ON ./gfxutil -i xml -o hex device-properties.xml device-properties.hex && echo $'---' && cat device-properties.hex && echo $'\n---' OK, let's continue over there. Thank you. Also, to answer your question, use the [spoiler] [/spoiler] tags. 1 Link to comment Share on other sites More sharing options...
sebinouse Posted September 7, 2015 Share Posted September 7, 2015 Injection works only if System/Library/PrelinkedKernels/prelinkedkernel has been made with Csr 0x00 ... is that normal ? Found the reason why : <key>InjectKexts</key> <string>Detect</string> I tried this when injection was broken ... and I never changed it . Link to comment Share on other sites More sharing options...
gils83 Posted September 7, 2015 Share Posted September 7, 2015 Hello Slice problem UEFI BIOS AMD brother board : MSI AM1I uefi bios works good uefi clover (bios aptio) and ASRock 970mpro3 uefi bios AMI no boot ? why ? and legacy works good . Link to comment Share on other sites More sharing options...
Slice Posted September 7, 2015 Share Posted September 7, 2015 Hello Slice problem UEFI BIOS AMD brother board : MSI AM1I uefi bios works good uefi clover (bios aptio) and ASRock 970mpro3 uefi bios AMI no boot ? why ? and legacy works good . There must be Drivers64uefi depending on the bios. Can you provide debug.log? 1 Link to comment Share on other sites More sharing options...
naiclub Posted September 7, 2015 Share Posted September 7, 2015 Hello Slice Clover 3263 did not compile comments Have a comment? Link to comment Share on other sites More sharing options...
Slice Posted September 7, 2015 Share Posted September 7, 2015 Hello Slice Clover 3263 did not compile comments Have a comment? Sorry? 1 Link to comment Share on other sites More sharing options...
gils83 Posted September 7, 2015 Share Posted September 7, 2015 There must be Drivers64uefi depending on the bios. Can you provide debug.log? I think debug.log? Link to comment Share on other sites More sharing options...
gils83 Posted September 7, 2015 Share Posted September 7, 2015 hello Slice , look video boot Clover , for small video is .mp4 H265 ScreenFlow1.mp4.zip Link to comment Share on other sites More sharing options...
Slice Posted September 7, 2015 Share Posted September 7, 2015 hello Slice , look video boot Clover , for small video is .mp4 H265 I can't OK, you don't know how to make debug.log. Then, boot to clovver GUI. Press F2. Boot to any system that able to read files. Look into /EFI/CLOVER/misc/ You can find here a file with a name preboot.log. Attach it, please, I want to look. 2 Link to comment Share on other sites More sharing options...
naiclub Posted September 7, 2015 Share Posted September 7, 2015 Sorry? Screen Shot 2015-09-07 at 13.59.04.png Again, I am sorry to see wrong go! Link to comment Share on other sites More sharing options...
gils83 Posted September 7, 2015 Share Posted September 7, 2015 I can't Screen Shot 2015-09-07 at 15.22.30.png OK, you don't know how to make debug.log. Then, boot to clovver GUI. Press F2. Boot to any system that able to read files. Look into /EFI/CLOVER/misc/ You can find here a file with a name preboot.log. Attach it, please, I want to look. thanks Slice 0:100 0:100 MemLog inited, TSC freq: 4291268600 0:100 0:000 MemLog was calibrated without ACPI PM Timer: Intel ICH device was not found. 0:100 0:000 0:100 0:000 Now is 7.9.2015, 14:29:42 (GMT+2047) 0:100 0:000 Starting Clover rev 3259 on American Megatrends EFI 0:100 0:000 SelfDevicePath=PciRoot(0x0)\Pci(0x16,0x2)\USB(0x4,0x0)\HD(1,MBR,0x0029E807,0x1000,0x64000) @B308A698 0:100 0:000 SelfDirPath = \EFI\BOOT 0:103 0:003 Total Memory Slots Count = 4 0:103 0:000 Type 17 Index = 0 0:103 0:000 SmbiosTable.Type17->Speed = 1333MHz 0:103 0:000 SmbiosTable.Type17->Size = 4096MB 0:103 0:000 SmbiosTable.Type17->Bank/Device = A1_BANK0 A1_DIMM0 0:103 0:000 Type 17 Index = 1 0:103 0:000 SmbiosTable.Type17->Speed = 1333MHz 0:103 0:000 SmbiosTable.Type17->Size = 2048MB 0:103 0:000 SmbiosTable.Type17->Bank/Device = A1_BANK1 A1_DIMM1 0:103 0:000 Type 17 Index = 2 0:103 0:000 Ignoring insane frequency value 0MHz 0:103 0:000 SmbiosTable.Type17->Speed = 0MHz 0:103 0:000 SmbiosTable.Type17->Size = 0MB 0:103 0:000 SmbiosTable.Type17->Bank/Device = A1_BANK2 A1_DIMM2 0:103 0:000 Type 17 Index = 3 0:103 0:000 SmbiosTable.Type17->Speed = 1333MHz 0:103 0:000 SmbiosTable.Type17->Size = 2048MB 0:103 0:000 SmbiosTable.Type17->Bank/Device = A1_BANK3 A1_DIMM3 0:103 0:000 Boot status=0 0:103 0:000 Clover revision: 3259 running on To Be Filled By O.E.M. 0:103 0:000 ... with board 970M Pro3 0:103 0:000 CPU Vendor = 68747541 Model=600F20 0:103 0:000 BrandString = AMD FX-8320E Eight-Core Processor 0:103 0:000 FSBFrequency=200MHz DMIvalue=200000kHz 0:103 0:000 Corrected FSBFrequency=200MHz 0:103 0:000 Vendor/Model/Stepping: 0x68747541/0x2/0x0 0:103 0:000 Family/ExtFamily: 0x15/0x6 0:103 0:000 MaxDiv/MinDiv: 21.5/7 0:103 0:000 Turbo: 0/0/0/0 0:103 0:000 Features: 0x178BFBFF 0:103 0:000 Threads: 8 0:103 0:000 Cores: 8 0:103 0:000 FSB: 200 MHz 0:103 0:000 CPU: 4300 MHz 0:103 0:000 TSC: 4300 MHz 0:103 0:000 PIS: 800 MHz 0:103 0:000 PCI (00|00:00.00) : 1002 5A14 class=060000 0:103 0:000 PCI (00|00:02.00) : 1002 5A16 class=060400 0:103 0:000 PCI (00|01:00.00) : 1002 679A class=030000 0:103 0:000 Found Radeon model=AMD Radeon HD 7950/8950/R9 280 0:103 0:000 PCI (00|01:00.01) : 1002 AAA0 class=040300 0:103 0:000 PCI (00|00:09.00) : 1002 5A1C class=060400 0:103 0:000 PCI (00|02:00.00) : 1B6F 7052 class=0C0330 0:103 0:000 PCI (00|00:11.00) : 1002 4391 class=010601 0:103 0:000 PCI (00|00:12.00) : 1002 4397 class=0C0310 0:103 0:000 PCI (00|00:12.02) : 1002 4396 class=0C0320 0:103 0:000 PCI (00|00:13.00) : 1002 4397 class=0C0310 0:103 0:000 PCI (00|00:13.02) : 1002 4396 class=0C0320 0:103 0:000 PCI (00|00:14.00) : 1002 4385 class=0C0500 0:103 0:000 PCI (00|00:14.02) : 1002 4383 class=040300 0:103 0:000 PCI (00|00:14.03) : 1002 439D class=060100 0:103 0:000 PCI (00|00:14.04) : 1002 4384 class=060401 0:103 0:000 PCI (00|00:14.05) : 1002 4399 class=0C0310 0:103 0:000 PCI (00|00:15.00) : 1002 43A0 class=060400 0:103 0:000 PCI (00|00:15.03) : 1002 43A3 class=060400 0:103 0:000 PCI (00|05:00.00) : 10EC 8168 class=020000 0:103 0:000 LAN 0, Vendor=10EC, MMIO=D000 0:103 0:000 PCI (00|00:16.00) : 1002 4397 class=0C0310 0:103 0:000 PCI (00|00:16.02) : 1002 4396 class=0C0320 0:103 0:000 PCI (00|00:18.00) : 1022 1600 class=060000 0:103 0:000 PCI (00|00:18.01) : 1022 1601 class=060000 0:103 0:000 PCI (00|00:18.02) : 1022 1602 class=060000 0:103 0:000 PCI (00|00:18.03) : 1022 1603 class=060000 0:103 0:000 PCI (00|00:18.04) : 1022 1604 class=060000 0:103 0:000 PCI (00|00:18.05) : 1022 1605 class=060000 0:103 0:000 Clover load options size = 4 bytes 0:103 0:000 Found Plist String = , parse XML in LoadOptions 0:103 0:000 Xml in load options is bad 0:121 0:017 Using OEM config.plist at path: EFI\CLOVER\config.plist 0:122 0:000 EFI\CLOVER\config.plist loaded: Success 0:125 0:003 Found theme directory: METAL 0:156 0:030 Loading early settings 0:156 0:000 timeout set to 5 0:156 0:000 Custom boot CUSTOM_BOOT_DISABLED (0x0) 0:156 0:000 Default theme: metal 0:156 0:000 LoadDrivers() start 0:162 0:006 Loading FSInject-64.efi status=Success 0:179 0:016 Loading OsxFatBinaryDrv-64.efi status=Success 0:213 0:033 Loading VBoxHfs-64.efi status=Success 0:231 0:018 - driver needs connecting 0:231 0:000 1 drivers needs connecting ... 0:231 0:000 PlatformDriverOverrideProtocol not found. Installing ... Success 0:231 0:000 Searching for invalid DiskIo BY_DRIVER connects: not found, all ok 1:153 0:922 LoadDrivers() end 1:153 0:000 Dump SMC keys from NVRAM: 1:164 0:010 SetScreenResolution: 1280x1024 - setting Mode 3 1:240 0:075 Video mode change to mode #3: Success 1:240 0:000 Console modes reported: 3, available modes: 1:240 0:000 Mode 1: 80x25 1:240 0:000 Mode 2: 128x40 (current mode) 1:240 0:000 Mode 3: 100x31 1:240 0:000 SetScreenResolution: 1280x1024 - already set 1:240 0:000 reinit: self device path=PciRoot(0x0)\Pci(0x16,0x2)\USB(0x4,0x0)\HD(1,MBR,0x0029E807,0x1000,0x64000) 1:864 0:624 get legacy LAN MAC, 1 card found 1:864 0:000 Legacy MAC address of LAN #0= D0:50:99:6A:6B:50: 1:864 0:000 ScanSPD() start 1:865 0:000 ScanSPD() end 1:865 0:000 Get Acpi Tables List from RSDT: 1:865 0:000 Found table: FACP A M I len=132 1:865 0:000 Found table: APIC A M I len=158 1:865 0:000 Found table: FPDT A M I len=68 1:865 0:000 Found table: MCFG A M I len=60 1:865 0:000 Found table: HPET A M I len=56 1:865 0:000 Found table: AAFT OEMAAFT len=98 1:865 0:000 Found table: SSDT POWERNOW len=5908 1:865 0:000 Found table: BGRT A M I len=56 1:865 0:000 Calibrated TSC frequency =4291268600 =4291MHz 1:865 0:000 Loading main settings 1:865 0:000 USB FixOwnership: true 1:865 0:000 Dropping 3 tables 1:865 0:000 Drop table 0 signature="DMAR" (52414D44) 1:865 0:000 set table: 52414D44, 0 to drop: 1:865 0:000 Drop table 1 signature="SSDT" (54445353) table-id="CpuPm" (0000006D50757043) 1:865 0:000 set table: 54445353, 6D50757043 to drop: 1:865 0:000 Drop table 2 signature="SSDT" (54445353) table-id="Cpu0Ist" (0074734930757043) 1:865 0:000 set table: 54445353, 74734930757043 to drop: 1:865 0:000 Config set Fixes will override FixMask mask! 1:865 0:000 final mask=9FE6F9D7 1:865 0:000 found 20 volumes with blockIO 1:865 0:000 0. Volume: 1:865 0:000 PciRoot(0x0)\Pci(0x16,0x2)\USB(0x4,0x0) 1:868 0:003 Result of bootcode detection: bootable unknown (legacy) 1:868 0:000 USB volume 1:868 0:000 1. Volume: 1:868 0:000 PciRoot(0x0)\Pci(0x16,0x2)\USB(0x4,0x0)\HD(1,MBR,0x0029E807,0x1000,0x64000) 1:872 0:003 Result of bootcode detection: bootable Clover (clover) 1:872 0:000 USB volume 1:967 0:095 This is SelfVolume !! 1:967 0:000 2. Volume: 1:967 0:000 PciRoot(0x0)\Pci(0x16,0x2)\USB(0x4,0x0)\HD(2,MBR,0x0029E807,0x65000,0x3A8B000) 1:971 0:003 USB volume 1:971 0:000 3. Volume: 1:971 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80) 2:047 0:076 Result of bootcode detection: bootable unknown (legacy) 2:047 0:000 4. Volume: 2:047 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81) 2:124 0:076 Result of bootcode detection: bootable unknown (legacy) 2:124 0:000 5. Volume: 2:124 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82) 2:242 0:118 Result of bootcode detection: bootable unknown (legacy) 2:242 0:000 6. Volume: 2:242 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(1,GPT,BFFCB28F-E338-4DCD-A2D9-C9B63B87E014,0x28,0x64000) 2:318 0:076 Result of bootcode detection: bootable unknown (legacy) 2:318 0:000 7. Volume: 2:318 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(2,GPT,17CF64DA-7D11-49DB-8A4E-6346F1596057,0x64028,0x29E4080) 2:319 0:000 Result of bootcode detection: bootable unknown (legacy) 2:319 0:000 8. Volume: 2:319 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(3,GPT,B6A2F10C-BECD-4637-982C-D150643C0526,0x2A880A8,0x9C97200) 2:319 0:000 9. Volume: 2:319 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(4,GPT,FA5DB164-8DC2-477E-A770-00278B4D0043,0xC75F2A8,0xC5C3D00) 2:319 0:000 10. Volume: 2:319 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(5,GPT,522C7783-1583-4D7E-8F19-E97AE57989AE,0x18E58EC8,0xC595BC0) 2:319 0:000 Result of bootcode detection: bootable unknown (legacy) 2:319 0:000 11. Volume: 2:319 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(1,GPT,D832AD6A-941E-44F8-B01F-100C4C8BE30B,0x28,0x64000) 2:396 0:076 Result of bootcode detection: bootable unknown (legacy) 2:434 0:037 12. Volume: 2:434 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(2,GPT,08BAD132-7C7C-4F77-8893-8658D254CDE0,0x64028,0x1D0CBC50) 2:434 0:000 Result of bootcode detection: bootable unknown (legacy) 2:434 0:000 13. Volume: 2:434 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(3,GPT,9984F59C-2DAF-475B-82F7-B897652F190D,0x1D12FC78,0x135F20) 2:434 0:000 14. Volume: 2:434 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(4,GPT,45430097-156E-43F5-8E9C-A4234F5EACE3,0x1D265B98,0x1D1C1B70) 2:434 0:000 15. Volume: 2:434 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(5,GPT,46E0737D-7BAC-4D6A-A3CE-167B76B75A8E,0x3A467708,0x1D1C1B70) 2:434 0:000 16. Volume: 2:434 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(6,GPT,FE740C4C-218C-442D-A5E8-7122E580B4A0,0x57669278,0x1D05DB10) 2:434 0:000 17. Volume: 2:434 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)\HD(1,MBR,0xEC4F5C6B,0x800,0xAF000) 2:511 0:076 Result of bootcode detection: bootable Windows (vista,win) 2:518 0:007 18. Volume: 2:518 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)\HD(2,MBR,0xEC4F5C6B,0xAF800,0x1D034800) 2:528 0:009 Result of bootcode detection: bootable Windows (vista,win) 2:536 0:008 19. Volume: 2:536 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)\HD(3,MBR,0xEC4F5C6B,0x1D0E4000,0xE1000) 2:578 0:042 Result of bootcode detection: bootable Windows (vista,win) 2:585 0:006 Using theme 'metal' (EFI\CLOVER\themes\metal) 2:594 0:009 Choosing theme metal 2:595 0:000 Custom entries start 2:595 0:000 Custom entries finish 2:595 0:000 Scanning loaders... 2:595 0:000 0: 'Whole Disc Boot' no file system 2:595 0:000 1: 'CLOVER' 2:693 0:098 2: 'Legacy HD2' no file system 2:693 0:000 3: 'Whole Disc Boot' no file system 2:693 0:000 4: 'Whole Disc Boot' no file system 2:693 0:000 5: 'Whole Disc Boot' no file system 2:693 0:000 6: 'Legacy HD1' no file system 2:693 0:000 7: 'doc2' 2:930 0:237 8: 'Yosemite 10.10.5' 3:000 0:069 AddLoaderEntry for Volume Name=Yosemite 10.10.5 3:019 0:019 Check if volume Is Hibernated: 3:019 0:000 Check sleep image 'by signature': 3:061 0:042 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success 3:061 0:000 SleepImage name from pref: ImageVolume = 'Yosemite 10.10.5', ImageName = '\private\var\vm\sleepimage' 3:090 0:028 sleepimage not found -> Not Found 3:090 0:000 hibernated: no - sign 3:234 0:143 9: 'doc' 3:352 0:118 10: 'ML 10.8.5' 3:408 0:055 AddLoaderEntry for Volume Name=ML 10.8.5 3:423 0:014 Check if volume Is Hibernated: 3:423 0:000 Check sleep image 'by signature': 3:491 0:068 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success 3:491 0:000 SleepImage name from pref: ImageVolume = 'ML 10.8.5', ImageName = '\private\var\vm\sleepimage' 3:527 0:036 Reading first 512 bytes of sleepimage ... 3:544 0:016 OurBlockIoRead: Lba=19EE4EC0, Offset=33DC9D8000 (BlockSize=512) 3:544 0:000 sig lion: 0 3:544 0:000 sig snow: 0 3:544 0:000 no valid sleep image offset was found 3:544 0:000 Reading completed -> Success 3:544 0:000 sleepimage offset could not be acquired 3:544 0:000 hibernated: no - sign 3:653 0:109 11: 'EFI' 3:724 0:071 12: 'Yosemite 10.10' 3:841 0:116 AddLoaderEntry for Volume Name=Yosemite 10.10 3:851 0:010 Check if volume Is Hibernated: 3:851 0:000 Check sleep image 'by signature': 3:890 0:038 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success 3:890 0:000 SleepImage name from pref: ImageVolume = 'Yosemite 10.10', ImageName = '\private\var\vm\sleepimage' 3:902 0:012 sleepimage not found -> Not Found 3:902 0:000 hibernated: no - sign 4:024 0:121 13: 'Recovery HD' 4:024 0:000 AddLoaderEntry for Volume Name=Recovery HD 4:124 0:099 14: 'sauv' 4:196 0:071 15: 'Yosemite10.10.4' 4:267 0:071 AddLoaderEntry for Volume Name=Yosemite10.10.4 4:279 0:011 Check if volume Is Hibernated: 4:279 0:000 Check sleep image 'by signature': 4:305 0:026 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success 4:305 0:000 SleepImage name from pref: ImageVolume = 'Yosemite10.10.4', ImageName = '\private\var\vm\sleepimage' 4:333 0:027 sleepimage not found -> Not Found 4:333 0:000 hibernated: no - sign 4:412 0:079 16: 'film' 4:505 0:092 17: 'Réservé au système' 4:576 0:071 18: '' 4:668 0:092 19: '' 4:740 0:071 Custom legacy start 4:740 0:000 Custom legacy end 4:740 0:000 Scanning legacy ... 4:740 0:000 0: 'Whole Disc Boot' (legacy) not legacy 4:740 0:000 1: 'CLOVER' (clover) add legacy 4:769 0:029 added 'Boot Clover from CLOVER' OSType=3 Icon=clover 4:769 0:000 2: 'Legacy HD2' (legacy) not legacy 4:769 0:000 3: 'Whole Disc Boot' (legacy) not legacy 4:769 0:000 4: 'Whole Disc Boot' (legacy) not legacy 4:769 0:000 5: 'Whole Disc Boot' (legacy) not legacy 4:769 0:000 6: 'Legacy HD1' (legacy) not legacy 4:769 0:000 7: 'doc2' (legacy) not legacy 4:769 0:000 8: 'Yosemite 10.10.5' (legacy) not legacy 4:769 0:000 9: 'doc' (legacy) not legacy 4:769 0:000 10: 'ML 10.8.5' (legacy) not legacy 4:769 0:000 11: 'EFI' (legacy) not legacy 4:769 0:000 12: 'Yosemite 10.10' (legacy) not legacy 4:769 0:000 13: 'Recovery HD' (legacy) not legacy 4:769 0:000 14: 'sauv' (legacy) not legacy 4:769 0:000 15: 'Yosemite10.10.4' (legacy) not legacy 4:769 0:000 16: 'film' (legacy) not legacy 4:769 0:000 17: 'Réservé au système' (vista,win) add legacy 4:774 0:004 Icon 18 (icons\vol_internal_ntfs.icns) not found 4:774 0:000 Theme path EFI\CLOVER\themes\metal, ThemeDir=B306A618 4:779 0:005 added 'Boot Windows from Réservé au système' OSType=2 Icon=vista,win 4:779 0:000 18: '' (vista,win) add legacy 4:784 0:004 added 'Boot Windows from ' OSType=2 Icon=vista,win 4:784 0:000 19: '' (vista,win) add legacy 4:789 0:004 added 'Boot Windows from ' OSType=2 Icon=vista,win 4:789 0:000 Custom tool start 4:789 0:000 Custom tool end 4:796 0:006 found tool \EFI\CLOVER\tools\Shell64U.efi 4:796 0:000 Checking EFI partition Volume 11 for Clover 4:825 0:028 Found Clover 4:843 0:018 GetEfiBootDeviceFromNvram: 4:843 0:000 efi-boot-device-data: PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(2,GPT,08BAD132-7C7C-4F77-8893-8658D254CDE0,0x64028,0x1D0CBC50) 4:843 0:000 Volume: 'PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(2,GPT,08BAD132-7C7C-4F77-8893-8658D254CDE0,0x64028,0x1D0CBC50)' 4:843 0:000 LoaderPath: '<null string>' 4:843 0:000 Guid = 08BAD132-7C7C-4F77-8893-8658D254CDE0 4:844 0:000 volume: partition = PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(2,GPT,08BAD132-7C7C-4F77-8893-8658D254CDE0,0x64028,0x1D0CBC50) 4:844 0:000 searching for that partition 4:844 0:000 found entry 2. 'Boot Mac OS X from Yosemite 10.10', Volume 'Yosemite 10.10' 4:844 0:000 Boot redirected to Entry 2. 'Boot Mac OS X from Yosemite 10.10' 4:844 0:000 DefaultIndex=2 and MainMenu.EntryCount=15 4:844 0:000 Use anime=logo_3D frames=15 6:031 1:187 Found Mouse device: 6:035 0:004 GUI ready preboot.log.zip Link to comment Share on other sites More sharing options...
Slice Posted September 7, 2015 Share Posted September 7, 2015 OK, now I see what do you have. See 0:156 0:000 LoadDrivers() start 0:162 0:006 Loading FSInject-64.efi status=Success 0:179 0:016 Loading OsxFatBinaryDrv-64.efi status=Success 0:213 0:033 Loading VBoxHfs-64.efi status=Success 0:231 0:018 - driver needs connecting 0:231 0:000 1 drivers needs connecting ... 0:231 0:000 PlatformDriverOverrideProtocol not found. Installing ... Success 0:231 0:000 Searching for invalid DiskIo BY_DRIVER connects: not found, all ok 1:153 0:922 LoadDrivers() end These are Drivers64UEFI. You have only three of them: FSInject-64.efi, OsxFatBinaryDrv-64.efi, VBoxHfs-64.efi. But I doubt your AMD BIOS already has other drivers. For example DataHubDxe.efi. OsxAptioFixDrv.efi as well. Make more attempts to start using maximum number of drivers. Same about DSDT fixes. Guys, why do you think you don't need DSDT fixes? All works without them??? 3 Link to comment Share on other sites More sharing options...
gils83 Posted September 7, 2015 Share Posted September 7, 2015 ok thanks Slice Link to comment Share on other sites More sharing options...
gils83 Posted September 7, 2015 Share Posted September 7, 2015 ok works good Slice with all drivers uefi64 and usb in false no dsdt 0:100 0:100 MemLog inited, TSC freq: 4529658320 0:100 0:000 MemLog was calibrated without ACPI PM Timer: Intel ICH device was not found. 0:100 0:000 0:100 0:000 Now is 7.9.2015, 19:0:22 (GMT+2047) 0:100 0:000 Starting Clover rev 2695 on American Megatrends EFI 0:100 0:000 SelfDevicePath=PciRoot(0x0)\Pci(0x16,0x2)\USB(0x4,0x0)\HD(1,GPT,9D4DF5FA-C55E-4AA9-A442-E479FC0EF474,0x28,0x64000) @B3082618 0:100 0:000 SelfDirPath = \EFI\BOOT 0:103 0:003 UnicodeCollation Status=Success 0:103 0:000 Total Memory Slots Count = 4 0:103 0:000 Type 17 Index = 0 0:103 0:000 SmbiosTable.Type17->Speed = 1333 0:103 0:000 SmbiosTable.Type17->Size = 4096 0:103 0:000 Type 17 Index = 1 0:103 0:000 SmbiosTable.Type17->Speed = 1333 0:103 0:000 SmbiosTable.Type17->Size = 2048 0:103 0:000 Type 17 Index = 2 0:103 0:000 Ignoring insane frequency value 0MHz 0:103 0:000 SmbiosTable.Type17->Speed = 0 0:103 0:000 SmbiosTable.Type17->Size = 0 0:103 0:000 Type 17 Index = 3 0:103 0:000 SmbiosTable.Type17->Speed = 1333 0:103 0:000 SmbiosTable.Type17->Size = 2048 0:103 0:000 Boot status=0 0:103 0:000 Clover revision: 2695 running on To Be Filled By O.E.M. 0:103 0:000 ... with board 970M Pro3 0:103 0:000 Clover load options size = 4 bytes 0:121 0:017 Oem AMBO.plist not found at path: EFI\CLOVER\AMBO.plist 0:121 0:000 EFI\CLOVER\AMBO.plist not loaded with name from LoadOptions: Not Found 0:124 0:003 Using OEM config.plist at path: EFI\CLOVER\config.plist 0:125 0:000 EFI\CLOVER\config.plist loaded: Success 0:153 0:028 Found theme METAL 0:174 0:020 Loading early settings 0:174 0:000 timeout set to 5 0:174 0:000 Default theme: metal 0:174 0:000 Hiding entries with string Windows 0:174 0:000 Hiding entries with string BOOTX64.EFI 0:174 0:000 LoadDrivers() start 0:206 0:031 Loading CsmVideoDxe-64.efi 0:229 0:023 - driver needs connecting 0:229 0:000 Loading DataHubDxe-64.efi 0:263 0:034 Loading EmuVariableUefi-64.efi 0:282 0:018 EmuVariableUefi Initialize: VariableCommonInitialize = Success, orig services stored, install gEmuVariableControlProtocolGuid = Success 0:283 0:001 Loading FSInject-64.efi 0:319 0:035 Loading HFSPlus.efi 0:336 0:017 - driver needs connecting 0:336 0:000 Loading OsxAptioFixDrv-64.efi 0:377 0:041 Loading OsxFatBinaryDrv-64.efi 0:390 0:012 Loading PartitionDxe-64.efi 0:426 0:036 - driver needs connecting 0:426 0:000 3 drivers needs connecting ... 0:426 0:000 PlatformDriverOverrideProtocol not found. Installing ... Success 0:427 0:000 Partition driver loaded: 0:427 0:000 Video driver loaded: disconnect Success 0:456 0:029 Searching for invalid DiskIo BY_DRIVER connects: not found, all ok 0:475 0:019 CsmVideoDriverBindingStart 0:475 0:000 mixed support=40010 0:475 0:000 Controller is [030000] 0:475 0:000 Check for VBE 0:479 0:004 found Detail Timing 1920x1080 0:484 0:005 0 1280x960 attr=BB - ok, edid- 0:485 0:000 1 640x480 attr=BB - ok, edid+, 640x480, working, highest, pref=1 0:485 0:000 2 800x600 attr=BB - ok, edid+, 800x600, working, highest, pref=2 0:485 0:000 3 1024x768 attr=BB - ok, edid+, 1024x768, working, highest, pref=3 0:486 0:000 4 1280x1024 attr=BB - ok, edid+, working, highest, pref=4 0:488 0:001 5 1400x1050 attr=BB - ok, edid- 0:491 0:003 6 1920x1080 attr=BB - ok, edid+, working, highest, pref=6 0:491 0:000 CsmVideo: New mode: 6 1920x1080 - set 0:564 0:073 - SetMode pref 6 (6) = Success 0:564 0:000 CsmVideoCheckForVbe - Success 0:564 0:000 CsmVideoDriverBindingStart end Success 0:564 0:000 CsmVideo: New mode: 3 1024x768 - blocking that switch 0:565 0:000 CsmVideo: New mode: 3 1024x768 - blocking that switch 0:565 0:000 CsmVideo: New mode: 2 800x600 - blocking that switch 1:617 1:052 LoadDrivers() end 1:617 0:000 EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success 1:637 0:019 Console modes reported: 3, available modes: 1:637 0:000 Mode 1: 80x25 1:637 0:000 Mode 2: 128x40 (current mode) 1:637 0:000 Mode 3: 100x31 1:637 0:000 SetScreenResolution: 1920x1080 - already set 1:637 0:000 reinit: self device path=PciRoot(0x0)\Pci(0x16,0x2)\USB(0x4,0x0)\HD(1,GPT,9D4DF5FA-C55E-4AA9-A442-E479FC0EF474,0x28,0x64000) 1:637 0:000 new SelfHandle=B3082618 1:640 0:002 CPU Vendor = 68747541 Model=600F20 1:640 0:000 BrandString = AMD FX-8320E Eight-Core Processor 1:640 0:000 FSBFrequency=200MHz 1:640 0:000 Corrected FSBFrequency=200MHz 1:640 0:000 Vendor/Model/Stepping: 0x68747541/0x2/0x0 1:640 0:000 Family/ExtFamily: 0x15/0x6 1:640 0:000 MaxDiv/MinDiv: 21.5/7 1:640 0:000 Turbo: 0/0/0/0 1:640 0:000 Features: 0x178BFBFF 1:640 0:000 Threads: 8 1:640 0:000 Cores: 8 1:640 0:000 FSB: 200 MHz 1:640 0:000 CPU: 4300 MHz 1:640 0:000 TSC: 4300 MHz 1:640 0:000 PIS: 800 MHz 1:640 0:000 PCI (00|00:00.00) : 1002 5A14 class=060000 1:640 0:000 PCI (00|00:02.00) : 1002 5A16 class=060400 1:640 0:000 PCI (00|01:00.00) : 1002 679A class=030000 1:640 0:000 Found Radeon model=AMD Radeon R9 280 1:640 0:000 PCI (00|01:00.01) : 1002 AAA0 class=040300 1:640 0:000 PCI (00|00:09.00) : 1002 5A1C class=060400 1:640 0:000 PCI (00|02:00.00) : 1B6F 7052 class=0C0330 1:640 0:000 PCI (00|00:11.00) : 1002 4391 class=010601 1:640 0:000 PCI (00|00:12.00) : 1002 4397 class=0C0310 1:640 0:000 PCI (00|00:12.02) : 1002 4396 class=0C0320 1:640 0:000 PCI (00|00:13.00) : 1002 4397 class=0C0310 1:641 0:000 PCI (00|00:13.02) : 1002 4396 class=0C0320 1:641 0:000 PCI (00|00:14.00) : 1002 4385 class=0C0500 1:641 0:000 PCI (00|00:14.02) : 1002 4383 class=040300 1:641 0:000 PCI (00|00:14.03) : 1002 439D class=060100 1:641 0:000 PCI (00|00:14.04) : 1002 4384 class=060401 1:641 0:000 PCI (00|00:14.05) : 1002 4399 class=0C0310 1:641 0:000 PCI (00|00:15.00) : 1002 43A0 class=060400 1:641 0:000 PCI (00|00:15.03) : 1002 43A3 class=060400 1:641 0:000 PCI (00|05:00.00) : 10EC 8168 class=020000 1:641 0:000 PCI (00|00:16.00) : 1002 4397 class=0C0310 1:641 0:000 PCI (00|00:16.02) : 1002 4396 class=0C0320 1:641 0:000 PCI (00|00:18.00) : 1022 1600 class=060000 1:641 0:000 PCI (00|00:18.01) : 1022 1601 class=060000 1:641 0:000 PCI (00|00:18.02) : 1022 1602 class=060000 1:641 0:000 PCI (00|00:18.03) : 1022 1603 class=060000 1:641 0:000 PCI (00|00:18.04) : 1022 1604 class=060000 1:641 0:000 PCI (00|00:18.05) : 1022 1605 class=060000 1:641 0:000 ScanSPD() start 1:661 0:019 ScanSPD() end 1:661 0:000 Get Acpi Tables List from RSDT: 1:661 0:000 Found table: FACP A M I len=132 1:661 0:000 Found table: APIC A M I len=158 1:661 0:000 Found table: FPDT A M I len=68 1:661 0:000 Found table: MCFG A M I len=60 1:661 0:000 Found table: HPET A M I len=56 1:661 0:000 Found table: AAFT OEMAAFT len=98 1:661 0:000 Found table: SSDT POWERNOW len=5908 1:661 0:000 Found table: BGRT A M I len=56 1:661 0:000 Found table: IVRS RD890S len=200 1:661 0:000 Calibrated TSC frequency =4529658320 =4529MHz 1:661 0:000 Loading main settings 1:661 0:000 Dropping 3 tables 1:661 0:000 Drop table 0 signature="DMAR" (52414D44) 1:661 0:000 set table: 52414D44, 0 to drop: 1:661 0:000 Drop table 1 signature="SSDT" (54445353) table-id="CpuPm" (0000006D50757043) 1:661 0:000 set table: 54445353, 6D50757043 to drop: 1:661 0:000 Drop table 2 signature="SSDT" (54445353) table-id="Cpu0Ist" (0074734930757043) 1:661 0:000 set table: 54445353, 74734930757043 to drop: 1:661 0:000 Config set Fixes will override FixMask mask! 1:661 0:000 final mask=9FEEE955 1:661 0:000 Config set EnableC7: - 1:661 0:000 Config set EnableC6: + 1:661 0:000 Config set EnableC4: - 1:661 0:000 Config set EnableC2: - 1:661 0:000 Config set CpuFreq=4300MHz 1:661 0:000 Config set BusSpeed=200000kHz 1:661 0:000 KextsToPatch: 1 requested 1:661 0:000 KextToPatch 0: AppleAHCIPort (External icons patch) Kext bin patch, data len: 8 1:661 0:000 Oem smbios.plist not found at path: EFI\CLOVER\smbios.plist 1:661 0:000 smbios.plist not found, not overriding config.plist 1:661 0:000 found 20 volumes with blockIO 1:661 0:000 0. Volume: 1:661 0:000 PciRoot(0x0)\Pci(0x16,0x2)\USB(0x4,0x0) 1:664 0:003 USB volume 1:664 0:000 Volume 'Whole Disc Boot', LegacyOS '', LegacyIcon(s) 'legacy', GUID = <null guid> 1:664 0:000 1. Volume: 1:664 0:000 PciRoot(0x0)\Pci(0x16,0x2)\USB(0x4,0x0)\HD(1,GPT,9D4DF5FA-C55E-4AA9-A442-E479FC0EF474,0x28,0x64000) 1:667 0:003 Result of bootcode detection: bootable <null string> (<null string>) 1:667 0:000 USB volume 1:973 0:306 Volume 'EFI', LegacyOS '', LegacyIcon(s) '<null string>', GUID = 9D4DF5FA-C55E-4AA9-A442-E479FC0EF474 1:973 0:000 This is SelfVolume !! 1:973 0:000 2. Volume: 1:973 0:000 PciRoot(0x0)\Pci(0x16,0x2)\USB(0x4,0x0)\HD(2,GPT,B9191748-1FD5-4991-AF9A-815C79604D4D,0x64028,0x3A4BFB0) 1:976 0:003 USB volume 1:976 0:000 Volume 'Sans titre 1', LegacyOS '', LegacyIcon(s) '<null string>', GUID = B9191748-1FD5-4991-AF9A-815C79604D4D 1:976 0:000 3. Volume: 1:976 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80) 2:049 0:072 Result of bootcode detection: bootable <null string> (<null string>) 2:049 0:000 Volume 'Whole Disc Boot', LegacyOS '', LegacyIcon(s) 'legacy', GUID = <null guid> 2:049 0:000 4. Volume: 2:049 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81) 2:122 0:072 Result of bootcode detection: bootable <null string> (<null string>) 2:122 0:000 Volume 'Whole Disc Boot', LegacyOS '', LegacyIcon(s) 'legacy', GUID = <null guid> 2:122 0:000 5. Volume: 2:122 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82) 2:213 0:091 Result of bootcode detection: bootable <null string> (<null string>) 2:213 0:000 Volume 'Whole Disc Boot', LegacyOS '', LegacyIcon(s) 'legacy', GUID = <null guid> 2:213 0:000 6. Volume: 2:213 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(1,GPT,BFFCB28F-E338-4DCD-A2D9-C9B63B87E014,0x28,0x64000) 2:286 0:072 Result of bootcode detection: bootable <null string> (<null string>) 2:286 0:000 Volume 'Legacy HD1', LegacyOS '', LegacyIcon(s) 'legacy', GUID = BFFCB28F-E338-4DCD-A2D9-C9B63B87E014 2:286 0:000 7. Volume: 2:286 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(2,GPT,17CF64DA-7D11-49DB-8A4E-6346F1596057,0x64028,0x29E4080) 2:286 0:000 Result of bootcode detection: bootable <null string> (<null string>) 2:286 0:000 Volume 'doc2', LegacyOS '', LegacyIcon(s) '<null string>', GUID = 17CF64DA-7D11-49DB-8A4E-6346F1596057 2:286 0:000 8. Volume: 2:286 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(3,GPT,B6A2F10C-BECD-4637-982C-D150643C0526,0x2A880A8,0x9C97200) 2:286 0:000 Volume 'Yosemite 10.10.5', LegacyOS '', LegacyIcon(s) '<null string>', GUID = B6A2F10C-BECD-4637-982C-D150643C0526 2:287 0:000 9. Volume: 2:287 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(4,GPT,FA5DB164-8DC2-477E-A770-00278B4D0043,0xC75F2A8,0xC5C3D00) 2:287 0:000 Volume 'doc', LegacyOS '', LegacyIcon(s) '<null string>', GUID = FA5DB164-8DC2-477E-A770-00278B4D0043 2:287 0:000 10. Volume: 2:287 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(5,GPT,522C7783-1583-4D7E-8F19-E97AE57989AE,0x18E58EC8,0xC595BC0) 2:287 0:000 Result of bootcode detection: bootable <null string> (<null string>) 2:287 0:000 Volume 'ML 10.8.5', LegacyOS '', LegacyIcon(s) '<null string>', GUID = 522C7783-1583-4D7E-8F19-E97AE57989AE 2:287 0:000 11. Volume: 2:287 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(1,GPT,D832AD6A-941E-44F8-B01F-100C4C8BE30B,0x28,0x64000) 2:360 0:072 Result of bootcode detection: bootable <null string> (<null string>) 2:430 0:070 Volume 'EFI', LegacyOS '', LegacyIcon(s) '<null string>', GUID = D832AD6A-941E-44F8-B01F-100C4C8BE30B 2:430 0:000 12. Volume: 2:430 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(2,GPT,08BAD132-7C7C-4F77-8893-8658D254CDE0,0x64028,0x1D0CBC50) 2:430 0:000 Result of bootcode detection: bootable <null string> (<null string>) 2:430 0:000 Volume 'Yosemite 10.10', LegacyOS '', LegacyIcon(s) '<null string>', GUID = 08BAD132-7C7C-4F77-8893-8658D254CDE0 2:430 0:000 13. Volume: 2:431 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(3,GPT,9984F59C-2DAF-475B-82F7-B897652F190D,0x1D12FC78,0x135F20) 2:431 0:000 Volume 'Recovery HD', LegacyOS '', LegacyIcon(s) '<null string>', GUID = 9984F59C-2DAF-475B-82F7-B897652F190D 2:431 0:000 14. Volume: 2:431 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(4,GPT,45430097-156E-43F5-8E9C-A4234F5EACE3,0x1D265B98,0x1D1C1B70) 2:431 0:000 Volume 'sauv', LegacyOS '', LegacyIcon(s) '<null string>', GUID = 45430097-156E-43F5-8E9C-A4234F5EACE3 2:431 0:000 15. Volume: 2:431 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(5,GPT,46E0737D-7BAC-4D6A-A3CE-167B76B75A8E,0x3A467708,0x1D1C1B70) 2:431 0:000 Volume 'Yosemite10.10.4', LegacyOS '', LegacyIcon(s) '<null string>', GUID = 46E0737D-7BAC-4D6A-A3CE-167B76B75A8E 2:431 0:000 16. Volume: 2:431 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(6,GPT,FE740C4C-218C-442D-A5E8-7122E580B4A0,0x57669278,0x1D05DB10) 2:431 0:000 Volume 'film', LegacyOS '', LegacyIcon(s) '<null string>', GUID = FE740C4C-218C-442D-A5E8-7122E580B4A0 2:431 0:000 17. Volume: 2:431 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)\HD(1,MBR,0xEC4F5C6B,0x800,0xAF000) 2:504 0:072 Result of bootcode detection: bootable Windows (vista,win) 2:510 0:006 Volume 'Réservé au système', LegacyOS 'Windows', LegacyIcon(s) 'vista,win', GUID = <null guid> 2:510 0:000 18. Volume: 2:510 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)\HD(2,MBR,0xEC4F5C6B,0xAF800,0x1D034800) 2:519 0:009 Result of bootcode detection: bootable Windows (vista,win) 2:527 0:007 Volume '', LegacyOS 'Windows', LegacyIcon(s) 'vista,win', GUID = <null guid> 2:527 0:000 19. Volume: 2:527 0:000 PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,82)\HD(3,MBR,0xEC4F5C6B,0x1D0E4000,0xE1000) 2:567 0:039 Result of bootcode detection: bootable Windows (vista,win) 2:567 0:000 Volume '', LegacyOS 'Windows', LegacyIcon(s) 'vista,win', GUID = <null guid> 2:567 0:000 Searching volumes for latest nvram.plist ... 2:567 0:000 1. Volume 'EFI', GUID = 9D4DF5FA-C55E-4AA9-A442-E479FC0EF474 - no nvram.plist - skipping! 2:567 0:000 2. Volume 'Sans titre 1', GUID = B9191748-1FD5-4991-AF9A-815C79604D4D - no nvram.plist - skipping! 2:567 0:000 7. Volume 'doc2', GUID = 17CF64DA-7D11-49DB-8A4E-6346F1596057 - no nvram.plist - skipping! 2:567 0:000 8. Volume 'Yosemite 10.10.5', GUID = B6A2F10C-BECD-4637-982C-D150643C0526 - no nvram.plist - skipping! 2:567 0:000 9. Volume 'doc', GUID = FA5DB164-8DC2-477E-A770-00278B4D0043 - no nvram.plist - skipping! 2:567 0:000 10. Volume 'ML 10.8.5', GUID = 522C7783-1583-4D7E-8F19-E97AE57989AE - no nvram.plist - skipping! 2:657 0:090 11. Volume 'EFI', GUID = D832AD6A-941E-44F8-B01F-100C4C8BE30B - no nvram.plist - skipping! 2:657 0:000 12. Volume 'Yosemite 10.10', GUID = 08BAD132-7C7C-4F77-8893-8658D254CDE0 - no nvram.plist - skipping! 2:657 0:000 13. Volume 'Recovery HD', GUID = 9984F59C-2DAF-475B-82F7-B897652F190D - no nvram.plist - skipping! 2:657 0:000 14. Volume 'sauv', GUID = 45430097-156E-43F5-8E9C-A4234F5EACE3 - no nvram.plist - skipping! 2:740 0:083 15. Volume 'Yosemite10.10.4', GUID = 46E0737D-7BAC-4D6A-A3CE-167B76B75A8E - no nvram.plist - skipping! 2:740 0:000 16. Volume 'film', GUID = FE740C4C-218C-442D-A5E8-7122E580B4A0 - no nvram.plist - skipping! 2:740 0:000 17. Volume 'Réservé au système', GUID = <null guid> - not GPT - no nvram.plist - skipping! 2:740 0:000 18. Volume '', GUID = <null guid> - not GPT - no nvram.plist - skipping! 2:740 0:000 19. Volume '', GUID = <null guid> - not GPT - no nvram.plist - skipping! 2:740 0:000 nvram.plist not found! 2:740 0:000 PutNvramPlistToRtVars: nvram.plist not found 2:740 0:000 Invalidating BuiltinIcons... 2:747 0:006 Using theme 'metal' (EFI\CLOVER\themes\metal) 2:755 0:008 font BoG_LucidaConsole_10W_NA.png loaded from themedir 2:755 0:000 Font loaded: ImageWidth=176 ImageHeight=288 2:756 0:000 Font 2 prepared WxH=11x18 CharWidth=10 2:756 0:000 Choosing theme metal 2:756 0:000 Custom entries start 2:756 0:000 Custom entries finish 2:756 0:000 Scanning loaders... 2:756 0:000 0: 'Whole Disc Boot' no file system 2:756 0:000 1: 'EFI' 2:922 0:165 hiding entry: \EFI\BOOT\BOOTX64.efi 2:922 0:000 2: 'Sans titre 1' 3:037 0:114 3: 'Whole Disc Boot' no file system 3:037 0:000 4: 'Whole Disc Boot' no file system 3:037 0:000 5: 'Whole Disc Boot' no file system 3:037 0:000 6: 'Legacy HD1' no file system 3:037 0:000 7: 'doc2' 3:296 0:259 8: 'Yosemite 10.10.5' 3:373 0:076 Check if volume Is Hibernated: 3:373 0:000 Check sleep image 'by signature': 3:413 0:039 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success 3:413 0:000 SleepImage name from pref: ImageVolume = 'Yosemite 10.10.5', ImageName = '\private\var\vm\sleepimage' 3:429 0:016 sleepimage not found -> Not Found 3:429 0:000 hibernated: no - sign 3:462 0:032 found PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(3,GPT,B6A2F10C-BECD-4637-982C-D150643C0526,0x2A880A8,0x9C97200)\System\Library\CoreServices\boot.efi 3:643 0:181 9: 'doc' 3:757 0:113 10: 'ML 10.8.5' 3:818 0:061 Check if volume Is Hibernated: 3:818 0:000 Check sleep image 'by signature': 3:872 0:054 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success 3:872 0:000 SleepImage name from pref: ImageVolume = 'ML 10.8.5', ImageName = '\private\var\vm\sleepimage' 3:906 0:034 Reading first 512 bytes of sleepimage ... 3:922 0:015 OurBlockIoRead: Lba=19EE4EC0, Offset=33DC9D8000 (BlockSize=512) 3:922 0:000 sig lion: 0 3:922 0:000 sig snow: 0 3:922 0:000 no valid sleep image offset was found 3:922 0:000 Reading completed -> Success 3:922 0:000 sleepimage offset could not be acquired 3:922 0:000 hibernated: no - sign 3:960 0:037 found PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,80)\HD(5,GPT,522C7783-1583-4D7E-8F19-E97AE57989AE,0x18E58EC8,0xC595BC0)\System\Library\CoreServices\boot.efi 4:128 0:168 11: 'EFI' 4:314 0:185 hiding entry: \EFI\BOOT\BOOTX64.efi 4:314 0:000 12: 'Yosemite 10.10' 4:353 0:039 Check if volume Is Hibernated: 4:353 0:000 Check sleep image 'by signature': 4:436 0:083 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success 4:436 0:000 SleepImage name from pref: ImageVolume = 'Yosemite 10.10', ImageName = '\private\var\vm\sleepimage' 4:457 0:020 sleepimage not found -> Not Found 4:457 0:000 hibernated: no - sign 4:487 0:030 found PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(2,GPT,08BAD132-7C7C-4F77-8893-8658D254CDE0,0x64028,0x1D0CBC50)\System\Library\CoreServices\boot.efi 4:628 0:140 13: 'Recovery HD' 4:682 0:054 found PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(3,GPT,9984F59C-2DAF-475B-82F7-B897652F190D,0x1D12FC78,0x135F20)\com.apple.recovery.boot\boot.efi 4:795 0:113 14: 'sauv' 4:909 0:113 15: 'Yosemite10.10.4' 5:040 0:131 Check if volume Is Hibernated: 5:040 0:000 Check sleep image 'by signature': 5:081 0:040 read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success 5:081 0:000 SleepImage name from pref: ImageVolume = 'Yosemite10.10.4', ImageName = '\private\var\vm\sleepimage' 5:153 0:072 sleepimage not found -> Not Found 5:153 0:000 hibernated: no - sign 5:178 0:024 found PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(5,GPT,46E0737D-7BAC-4D6A-A3CE-167B76B75A8E,0x3A467708,0x1D1C1B70)\System\Library\CoreServices\boot.efi 5:311 0:133 16: 'film' 5:425 0:113 17: 'Réservé au système' 5:538 0:113 18: '' 5:671 0:132 19: '' 5:785 0:113 Custom legacy start 5:785 0:000 Custom legacy end 5:785 0:000 Scanning legacy ... 5:785 0:000 0: 'Whole Disc Boot' (legacy) not legacy 5:785 0:000 1: 'EFI' (<null string>) not legacy 5:785 0:000 2: 'Sans titre 1' (<null string>) not legacy 5:785 0:000 3: 'Whole Disc Boot' (legacy) not legacy 5:785 0:000 4: 'Whole Disc Boot' (legacy) not legacy 5:785 0:000 5: 'Whole Disc Boot' (legacy) not legacy 5:785 0:000 6: 'Legacy HD1' (legacy) not legacy 5:785 0:000 7: 'doc2' (<null string>) not legacy 5:785 0:000 8: 'Yosemite 10.10.5' (<null string>) not legacy 5:785 0:000 9: 'doc' (<null string>) not legacy 5:785 0:000 10: 'ML 10.8.5' (<null string>) not legacy 5:785 0:000 11: 'EFI' (<null string>) not legacy 5:785 0:000 12: 'Yosemite 10.10' (<null string>) not legacy 5:785 0:000 13: 'Recovery HD' (<null string>) not legacy 5:785 0:000 14: 'sauv' (<null string>) not legacy 5:785 0:000 15: 'Yosemite10.10.4' (<null string>) not legacy 5:785 0:000 16: 'film' (<null string>) not legacy 5:785 0:000 17: 'Réservé au système' (vista,win) add legacy 5:792 0:007 Icon 18 (icons\vol_internal_ntfs.icns) not found 5:792 0:000 Theme path EFI\CLOVER\themes\metal, ThemeDir=B30667D8 5:800 0:007 added 'Boot Windows from Réservé au système' OSType=2 Icon=vista,win 5:800 0:000 18: '' (vista,win) add legacy 5:826 0:026 added 'Boot Windows from ' OSType=2 Icon=vista,win 5:826 0:000 19: '' (vista,win) add legacy 5:834 0:007 added 'Boot Windows from ' OSType=2 Icon=vista,win 5:834 0:000 Custom tool start 5:834 0:000 Custom tool end 5:843 0:009 found tool \EFI\CLOVER\tools\Shell64U.efi 5:843 0:000 Checking EFI partition Volume 1 for Clover 5:850 0:006 Found Clover 5:854 0:003 EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored 5:854 0:000 FindBootOptionForFile: B3082618, \EFI\CLOVER\CLOVERX64.EFI 5:854 0:000 BootOrder: 4: Boot0001, Boot0003, Boot0004, Boot0002 5:854 0:000 Searching for: PciRoot(0x0)\Pci(0x16,0x2)\USB(0x4,0x0)\HD(1,GPT,9D4DF5FA-C55E-4AA9-A442-E479FC0EF474,0x28,0x64000)\EFI\CLOVER\CLOVERX64.EFI (Len: 126) 5:854 0:000 and for: HD(1,GPT,9D4DF5FA-C55E-4AA9-A442-E479FC0EF474,0x28,0x64000)\EFI\CLOVER\CLOVERX64.EFI (Len: 102) 5:874 0:020 FindBootOptionForFile: Not found. 5:874 0:000 Checking EFI partition Volume 11 for Clover 5:936 0:061 Found Clover 5:936 0:000 EmuVariable UninstallEmulation: CloseEvent = Invalid Parameter, original var services restored 5:936 0:000 FindBootOptionForFile: B301FD18, \EFI\CLOVER\CLOVERX64.EFI 5:936 0:000 BootOrder: 4: Boot0001, Boot0003, Boot0004, Boot0002 5:937 0:000 Searching for: PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(1,GPT,D832AD6A-941E-44F8-B01F-100C4C8BE30B,0x28,0x64000)\EFI\CLOVER\CLOVERX64.EFI (Len: 141) 5:937 0:000 and for: HD(1,GPT,D832AD6A-941E-44F8-B01F-100C4C8BE30B,0x28,0x64000)\EFI\CLOVER\CLOVERX64.EFI (Len: 102) 5:937 0:000 FindBootOptionForFile: Not found. 5:953 0:015 EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success 5:992 0:039 GetEfiBootDeviceFromNvram: 5:992 0:000 efi-boot-device-data: PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(3,GPT,9984F59C-2DAF-475B-82F7-B897652F190D,0x1D12FC78,0x135F20)\com.apple.recovery.boot\boot.efi 5:992 0:000 Volume: 'PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(3,GPT,9984F59C-2DAF-475B-82F7-B897652F190D,0x1D12FC78,0x135F20)' 5:992 0:000 LoaderPath: '\com.apple.recovery.boot\boot.efi' 5:992 0:000 Guid = 9984F59C-2DAF-475B-82F7-B897652F190D 5:993 0:000 volume: partition = PciRoot(0x0)\Pci(0x11,0x0)\VenHw(CF31FAC5-C24E-11D2-85F3-00A0C93EC93B,81)\HD(3,GPT,9984F59C-2DAF-475B-82F7-B897652F190D,0x1D12FC78,0x135F20) 5:993 0:000 searching for that partition and loader '\com.apple.recovery.boot\boot.efi' 5:993 0:000 found entry 3. 'Boot Recovery from Recovery HD', Volume 'Recovery HD', '\com.apple.recovery.boot\boot.efi' 5:993 0:000 Boot redirected to Entry 3. 'Boot Recovery from Recovery HD' 5:993 0:000 EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored 5:993 0:000 DefaultIndex=3 and MainMenu.EntryCount=15 5:993 0:000 Use anime=logo_3D frames=15 6:301 0:308 found 15 frames of the anime 8:141 1:840 Found Mouse device: 8:168 0:026 GUI ready Archive.zip Link to comment Share on other sites More sharing options...
oSxFr33k Posted September 8, 2015 Share Posted September 8, 2015 Can the RtVariable BooterConfig be left blank or it needs 0x28 for El Capitan? I am trying different Clover settings as I am getting a kernel panic with IOUSBHostFamily, dependency AppleUsbXHCI most likely because of the ASMedia USB 3. It takes me 5 to 10 boots before I get to Desktop but I do eventually get there. I am not running the GenericUSBXhci kext and tried disabling the USB 3 ports. Once I get past the Kernel Panic after several reboot attempts, I see a flood of messages ASMX@01000000: AppleUSBXHCI IPCI: CreatedPorts: Unsupported speed mantissa. I don't care about the flood of messages, I jus want to be able to boot the first time to Desktop. This is on an Asus X79-Deluxe and the funny thing is I don't have this issue on my Asus Z97-Deluxe and both boards use both ASMedia chipsets, ASM1042 and ASM1074. So I am thinking its possibly some tweaking in Clover I need to do or to try another version of Clover. Link to comment Share on other sites More sharing options...
magnifico Posted September 8, 2015 Share Posted September 8, 2015 Can the RtVariable BooterConfig be left blank or it needs 0x28 for El Capitan? I am trying different Clover settings as I am getting a kernel panic with IOUSBHostFamily, dependency AppleUsbXHCI most likely because of the ASMedia USB 3. It takes me 5 to 10 boots before I get to Desktop but I do eventually get there. I am not running the GenericUSBXhci kext and tried disabling the USB 3 ports. Once I get past the Kernel Panic after several reboot attempts, I see a flood of messages ASMX@01000000: AppleUSBXHCI IPCI: CreatedPorts: Unsupported speed mantissa. I don't care about the flood of messages, I jus want to be able to boot the first time to Desktop. This is on an Asus X79-Deluxe and the funny thing is I don't have this issue on my Asus Z97-Deluxe and both boards use both ASMedia chipsets, ASM1042 and ASM1074. So I am thinking its possibly some tweaking in Clover I need to do or to try another version of Clover. Hi me too have asmedia on asrock z97 but i dont use kext. ..why use you? 1 Link to comment Share on other sites More sharing options...
oSxFr33k Posted September 8, 2015 Share Posted September 8, 2015 Hi me too have asmedia on asrock z97 but i dont use kext. ..why use you? The problem is with Asus X79 kernel panic. Does El Capitan need the 0x28 flag to boot properly? Link to comment Share on other sites More sharing options...
magnifico Posted September 8, 2015 Share Posted September 8, 2015 The problem is with Asus X79 kernel panic. Does El Capitan need the 0x28 flag to boot properly?I thing yes for now Link to comment Share on other sites More sharing options...
iEric Posted September 8, 2015 Share Posted September 8, 2015 My fellow hackers, how do I get chris1111 El Capitan Clover version to boot Windows 10 and ArchLinux's Grub? I'm using Legacy Clover and all my other systems boot loaders are legacy too (Windows, Linux), however, when I try to boot one of my non-OSX systems with Clover, it doesn't boot, it just returns to the main menu. It boots normally both systems using Chimera (I can't boot El Capitan using Chimera tho, not even using the El Capitan Chameleon version coz of my Broadwell CPU). What's happening? I thought I could at least dual boot with Windows. Note: I'm using MBR Link to comment Share on other sites More sharing options...
Slice Posted September 8, 2015 Share Posted September 8, 2015 My fellow hackers, how do I get chris1111 El Capitan Clover version to boot Windows 10 and ArchLinux's Grub? I'm using Legacy Clover and all my other systems boot loaders are legacy too (Windows, Linux), however, when I try to boot one of my non-OSX systems with Clover, it doesn't boot, it just returns to the main menu. It boots normally both systems using Chimera (I can't boot El Capitan using Chimera tho, not even using the El Capitan Chameleon version coz of my Broadwell CPU). What's happening? I thought I could at least dual boot with Windows. Note: I'm using MBR I think it will be good advice for you http://clover-wiki.zetam.org/What-is-what#PBR-sector 1 Link to comment Share on other sites More sharing options...
liujianwei Posted September 8, 2015 Share Posted September 8, 2015 My fellow hackers, how do I get chris1111 El Capitan Clover version to boot Windows 10 and ArchLinux's Grub? I'm using Legacy Clover and all my other systems boot loaders are legacy too (Windows, Linux), however, when I try to boot one of my non-OSX systems with Clover, it doesn't boot, it just returns to the main menu. It boots normally both systems using Chimera (I can't boot El Capitan using Chimera tho, not even using the El Capitan Chameleon version coz of my Broadwell CPU). What's happening? I thought I could at least dual boot with Windows. Note: I'm using MBR seems like legacy clover doesn't support MBR well when boot Windows or Linux seems like legacy clover doesn't have good Compatibility Support Module seems like legacy clover doesn't support Windows or Linux EFI installer well seems like legacy clover support GPT and OS X well seems like Parallels Desktop support MBR well when boot Windows or Linux legacy clover is perfect Link to comment Share on other sites More sharing options...
tluck Posted September 8, 2015 Share Posted September 8, 2015 magnifico and oSxFr33k - i used this kext patch to disable USB3 (AppleUSBXHCIPCI.kext) to avoid the random KP or spews of info and nonworking USB3. for me the issues is that the FL1009 chipset does not seem to work on 10.11. this basically disables class match for XHCI on class 0xc033000 <key>KextsToPatch</key> <array> <dict> <key>Comment</key> <string>Remove XHCI</string> <key>Find</key> <data> MGMwMzMwMDA= </data> <key>InfoPlistPatch</key> <true/> <key>Name</key> <string>AppleUSBXHCIPCI</string> <key>Replace</key> <data> MDAwMDAwMDA= </data> </dict> </array> 2 Link to comment Share on other sites More sharing options...
Recommended Posts