Delecta Posted December 12, 2019 Share Posted December 12, 2019 Hey guys ! I am building my new hackintosh and so I bought the last X299X designare by Gigabyte : CPU: i9-9900x Mobo : Gigabyte X299x Designare 10G Cooler : BeQuiet! Pure Rock GPU: AMD RX580 SSD : Samsung 970 nvme 1Tb PSU : Corsair RM850x Case : Phanteks Evolv X Now I am stuck at these lines : "Thunderbolt runtime power conservation disabled. Thunderbolt 255 PCI - LS=0x7043 LC=0x0040 SS=0x0040 SC=0x008 PWCSR=0x0000 RT=0xffffffff MLRT=0xffffffff LWRT=0xffffffff PRRT=0xffffffff TRT=0x0000 TNLRT=0x0000 TLWRT=0x0000 TPRRT=0x0000 TLUP=0x0001" These lines showed even when I disabled thunderbolt in BIOS. After some search, I found a guy who has the same first line and was able to boot when disable XHCI hand-off USB bios option, didn't work for me. Is anyone got an idea ? Thank you Link to comment Share on other sites More sharing options...
dolgarrenan Posted January 3, 2020 Share Posted January 3, 2020 (edited) Where did you find "this guy"?? I have the same board and have been going crazy about this! What BIOS version are you on? Edited January 3, 2020 by dolgarrenan Link to comment Share on other sites More sharing options...
紫米 Posted January 7, 2020 Share Posted January 7, 2020 <dict> <key>ACPI</key> <dict> <key>DSDT</key> <dict> <key>Patches</key> <array> <dict> <key>Comment</key> <string>X299X-DSDT-RTC-Patch</string> <key>Find</key> <data>oAuTU1RBUwo=</data> <key>Replace</key> <data>oAqRCv8L//8=</data> </dict> </array> </dict> </dict> </dict> You can try add this DSDT patch to clover's config. Link to comment Share on other sites More sharing options...
Allubz Posted January 20, 2020 Share Posted January 20, 2020 (edited) Can confirm the above patch works for the X299X Designare-10G. Typical X299 BIOS settings for macOS applied. Much appreciated! Edited January 20, 2020 by Allubz Link to comment Share on other sites More sharing options...
rocnroll Posted January 21, 2020 Share Posted January 21, 2020 Hello....were you able to get this Designare X299X 10g motherboard working with thunderbolt and what Mac OS did you use...thanks Link to comment Share on other sites More sharing options...
dolgarrenan Posted January 21, 2020 Share Posted January 21, 2020 18 hours ago, Allubz said: Can confirm the above patch works for the X299X Designare-10G. Typical X299 BIOS settings for macOS applied. Much appreciated! Can you please share your BIOS settings and EFI settings?? I have not been able to make it work so far Link to comment Share on other sites More sharing options...
ealuka2 Posted January 22, 2020 Share Posted January 22, 2020 hi Guys, can those of you who have been successful at making it work please share your BIOS settings and EFI settings? I'm new to hackintosh and it would be very helpful. Also share where to add the code pasted above. Link to comment Share on other sites More sharing options...
dolgarrenan Posted January 22, 2020 Share Posted January 22, 2020 (edited) On 1/22/2020 at 4:20 AM, ealuka2 said: hi Guys, can those of you who have been successful at making it work please share your BIOS settings and EFI settings? I'm new to hackintosh and it would be very helpful. Also share where to add the code pasted above. Code is to be added to your DSDT patching section in .plist Edited January 24, 2020 by dolgarrenan Link to comment Share on other sites More sharing options...
dolgarrenan Posted January 28, 2020 Share Posted January 28, 2020 On 1/7/2020 at 3:28 AM, 紫米 said: <dict> <key>ACPI</key> <dict> <key>DSDT</key> <dict> <key>Patches</key> <array> <dict> <key>Comment</key> <string>X299X-DSDT-RTC-Patch</string> <key>Find</key> <data>oAuTU1RBUwo=</data> <key>Replace</key> <data>oAqRCv8L//8=</data> </dict> </array> </dict> </dict> </dict> You can try add this DSDT patch to clover's config. Are you the creator of the patch? Link to comment Share on other sites More sharing options...
紫米 Posted January 30, 2020 Share Posted January 30, 2020 On 1/28/2020 at 5:22 PM, dolgarrenan said: Are you the creator of the patch? Yes, I try this patch by my self, and it can work. then, I refer to this discuss:https://www.tonymacx86.com/threads/fix-for-boot-hangs-after-bios-update-acpi-patch.275091/ 2 Link to comment Share on other sites More sharing options...
dolgarrenan Posted January 30, 2020 Share Posted January 30, 2020 6 hours ago, 紫米 said: Yes, I try this patch by my self, and it can work. then, I refer to this discuss:https://www.tonymacx86.com/threads/fix-for-boot-hangs-after-bios-update-acpi-patch.275091/ Oh yeah I know it works, I'm currently using it, I wanted to credit someone for the patch in another post. How did you managed to find out where to look to replace? In the ACPI patch post there isn't much explanation I think.. Link to comment Share on other sites More sharing options...
紫米 Posted January 31, 2020 Share Posted January 31, 2020 20 hours ago, dolgarrenan said: Oh yeah I know it works, I'm currently using it, I wanted to credit someone for the patch in another post. How did you managed to find out where to look to replace? In the ACPI patch post there isn't much explanation I think.. The issue is (RTC) _STA return 0x00 I Use Hex Fiend to search: and replace the code: But now has the new way to fix this issue, You can use SSDT to set STAS value. DefinitionBlock ("", "SSDT", 1, "HACK", "SET-STAS", 0x00000000) { External (STAS, IntObj) // (from opcode) Scope (_SB) { Method (_INI, 0, NotSerialized) // _INI: Initialize { STAS = One } } } 2 Link to comment Share on other sites More sharing options...
dolgarrenan Posted January 31, 2020 Share Posted January 31, 2020 3 hours ago, 紫米 said: The issue is (RTC) _STA return 0x00 I Use Hex Fiend to search: and replace the code: But now has the new way to fix this issue, You can use SSDT to set STAS value. DefinitionBlock ("", "SSDT", 1, "HACK", "SET-STAS", 0x00000000) { External (STAS, IntObj) // (from opcode) Scope (_SB) { Method (_INI, 0, NotSerialized) // _INI: Initialize { STAS = One } } } This is awesome work! SSDT much better than just clover on the fly dsdt patch, thanks for the explanation! Link to comment Share on other sites More sharing options...
紫米 Posted January 31, 2020 Share Posted January 31, 2020 about the 10G ethernet. I try to patch SmallTreeIntel8259x.kext check subsystem-id 0x0a. so, you can put the SmallTreeIntel8259x.kext in the clover's kext folder. and don't forget to remove any FakePCIID*****.kext. SmallTreeIntel8259x.kext.zip 1 Link to comment Share on other sites More sharing options...
dolgarrenan Posted January 31, 2020 Share Posted January 31, 2020 9 minutes ago, 紫米 said: about the 10G ethernet. I try to patch SmallTreeIntel8259x.kext check subsystem-id 0x0a. so, you can put the SmallTreeIntel8259x.kext in the clover's kext folder. and don't forget to remove any FakePCIID*****.kext. SmallTreeIntel8259x.kext.zip I'll try asap! BTW, I have tried with the SSDT you posted and its giving me an error, it stays on: apfs_module_start_1683: Any ideas? Link to comment Share on other sites More sharing options...
紫米 Posted January 31, 2020 Share Posted January 31, 2020 8 minutes ago, dolgarrenan said: I'll try asap! BTW, I have tried with the SSDT you posted and its giving me an error, it stays on: apfs_module_start_1683: Any ideas? I try this SSDT. I have the same error. so, this way is not work for X299X. 1 Link to comment Share on other sites More sharing options...
dolgarrenan Posted January 31, 2020 Share Posted January 31, 2020 (edited) 23 minutes ago, 紫米 said: I try this SSDT. I have the same error. so, this way is not work for X299X. That's a shame, but don't worry, we will make it work somehow! I have tried the SmallTree.kext and I can say it work as expected, .kext has to be located in L/E/, it don't work through clover injection. What did you do to make the .kext work?? Edited January 31, 2020 by dolgarrenan Link to comment Share on other sites More sharing options...
oli.mathieu Posted February 23, 2020 Share Posted February 23, 2020 On 1/31/2020 at 6:23 AM, 紫米 said: The issue is (RTC) _STA return 0x00 I Use Hex Fiend to search: and replace the code: But now has the new way to fix this issue, You can use SSDT to set STAS value. DefinitionBlock ("", "SSDT", 1, "HACK", "SET-STAS", 0x00000000) { External (STAS, IntObj) // (from opcode) Scope (_SB) { Method (_INI, 0, NotSerialized) // _INI: Initialize { STAS = One } } } Hello Sorry to intrude I try to boot an ASrock X299 Creator :https://www.tonymacx86.com/threads/asrock-x299-creator.292400/ Is there a way to find a patch for this MOBO ? Thanks in advance Link to comment Share on other sites More sharing options...
Loloflat6 Posted February 23, 2020 Share Posted February 23, 2020 On 1/7/2020 at 3:28 AM, 紫米 said: <dict> <key>ACPI</key> <dict> <key>DSDT</key> <dict> <key>Patches</key> <array> <dict> <key>Comment</key> <string>X299X-DSDT-RTC-Patch</string> <key>Find</key> <data>oAuTU1RBUwo=</data> <key>Replace</key> <data>oAqRCv8L//8=</data> </dict> </array> </dict> </dict> </dict> You can try add this DSDT patch to clover's config. Please is there a patch for AsRock X299 Creator (X299 cascade lake MotherBoard ) : stuck at PCI configuration end, Bridges 9 , Devices 117 ? Link to comment Share on other sites More sharing options...
oli.mathieu Posted February 23, 2020 Share Posted February 23, 2020 5 minutes ago, Loloflat6 said: Please is there a patch for AsRock X299 Creator (X299 cascade lake MotherBoard ) : stuck at PCI configuration end, Bridges 9 , Devices 117 ? Same. Link to comment Share on other sites More sharing options...
dolgarrenan Posted March 9, 2020 Share Posted March 9, 2020 Why don't you guys share your unpatched dsdt and full verbose log? Perhaps there is more to it. Link to comment Share on other sites More sharing options...
pcm70 Posted March 18, 2020 Share Posted March 18, 2020 Does Anyone have a working EFI folder for x299x? I have tried patches and still stuck at afps_module_start 1683. Would be greatly appreciated. Cannot even boot to Mojave installer. Been at it for days. Motherboard: GIGABYTE X299X DESIGNARE 10G LGA 2066 CPU: Intel Core i9-9940X Skylake X 14-Core 3.3 GHz Video: Gigabyte AMD Radeon Vega 64 Liquid Cooled Drives: WD Blue 3D and ssd 500gb Memory G.Skill Ripjaws V 16GB (2 x 8GB) DDR4-3600 PC4-28800 Drive: WD Blue 3D and ssd 500gb Power Supply: be quiet! Dark Power Pro 11 1200W Link to comment Share on other sites More sharing options...
pcm70 Posted March 18, 2020 Share Posted March 18, 2020 On 12/12/2019 at 6:37 AM, Delecta said: Hey guys ! I am building my new hackintosh and so I bought the last X299X designare by Gigabyte : CPU: i9-9900x Mobo : Gigabyte X299x Designare 10G Cooler : BeQuiet! Pure Rock GPU: AMD RX580 SSD : Samsung 970 nvme 1Tb PSU : Corsair RM850x Case : Phanteks Evolv X Now I am stuck at these lines : "Thunderbolt runtime power conservation disabled. Thunderbolt 255 PCI - LS=0x7043 LC=0x0040 SS=0x0040 SC=0x008 PWCSR=0x0000 RT=0xffffffff MLRT=0xffffffff LWRT=0xffffffff PRRT=0xffffffff TRT=0x0000 TNLRT=0x0000 TLWRT=0x0000 TPRRT=0x0000 TLUP=0x0001" These lines showed even when I disabled thunderbolt in BIOS. After some search, I found a guy who has the same first line and was able to boot when disable XHCI hand-off USB bios option, didn't work for me. Is anyone got an idea ? Thank you Did you have any luck with a successful build with this motherboard? Link to comment Share on other sites More sharing options...
tutu13 Posted June 24, 2020 Share Posted June 24, 2020 Hi, would you know if Gigabyte x299x Aorus Master is good for hackintosh ? (I've an Intel i9 10980XE) Thank you Link to comment Share on other sites More sharing options...
joostiphone101 Posted July 30, 2020 Share Posted July 30, 2020 On 12/12/2019 at 12:37 PM, Delecta said: Hey guys ! I am building my new hackintosh and so I bought the last X299X designare by Gigabyte : CPU: i9-9900x Mobo : Gigabyte X299x Designare 10G Cooler : BeQuiet! Pure Rock GPU: AMD RX580 SSD : Samsung 970 nvme 1Tb PSU : Corsair RM850x Case : Phanteks Evolv X Now I am stuck at these lines : "Thunderbolt runtime power conservation disabled. Thunderbolt 255 PCI - LS=0x7043 LC=0x0040 SS=0x0040 SC=0x008 PWCSR=0x0000 RT=0xffffffff MLRT=0xffffffff LWRT=0xffffffff PRRT=0xffffffff TRT=0x0000 TNLRT=0x0000 TLWRT=0x0000 TPRRT=0x0000 TLUP=0x0001" These lines showed even when I disabled thunderbolt in BIOS. After some search, I found a guy who has the same first line and was able to boot when disable XHCI hand-off USB bios option, didn't work for me. Is anyone got an idea ? Thank you I had the same issue getting the 255 PCI error. I fixed it by doing as follows: - Mount EFI - go to folder OC -> and open config.plist with PlistEdit Pro.app - Unfold "NVRAM, Add, 7c43...." and add "vsmcgen=1" to boot-args. Link to comment Share on other sites More sharing options...
Recommended Posts