Jump to content

X299X Designare 10G build


Delecta
 Share

25 posts in this topic

Recommended Posts

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

  • 4 weeks later...
<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

  • 2 weeks later...
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 by dolgarrenan
Link to comment
Share on other sites

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

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

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

393496064_2020-01-3112_17_58.png.f019e1c7bbd1768842113e8c1fdd292b.png

 

I Use Hex Fiend to search:
1867234441_2020-01-3112_23_20.thumb.png.6a794c359b8e06956665c31b78c0dd43.png

and replace the code:

1581767974_2020-01-3112_24_30.thumb.png.8849c142b4384c4d89e32a871ad36462.png

 

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
        }
    }
}

 

  • Like 2
Link to comment
Share on other sites

3 hours ago, 紫米 said:

 

The issue is (RTC) _STA return 0x00

393496064_2020-01-3112_17_58.png.f019e1c7bbd1768842113e8c1fdd292b.png

 

I Use Hex Fiend to search:
1867234441_2020-01-3112_23_20.thumb.png.6a794c359b8e06956665c31b78c0dd43.png

and replace the code:

1581767974_2020-01-3112_24_30.thumb.png.8849c142b4384c4d89e32a871ad36462.png

 

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

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

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.

  • Like 1
Link to comment
Share on other sites

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 by dolgarrenan
Link to comment
Share on other sites

  • 4 weeks later...
On 1/31/2020 at 6:23 AM, 紫米 said:

 

The issue is (RTC) _STA return 0x00

393496064_2020-01-3112_17_58.png.f019e1c7bbd1768842113e8c1fdd292b.png

 

I Use Hex Fiend to search:
1867234441_2020-01-3112_23_20.thumb.png.6a794c359b8e06956665c31b78c0dd43.png

and replace the code:

1581767974_2020-01-3112_24_30.thumb.png.8849c142b4384c4d89e32a871ad36462.png

 

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

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

  • 2 weeks later...
  • 2 weeks later...

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

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

  • 3 months later...
  • 1 month later...
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.

 

1668126907_Screenshot2020-07-30at15_35_27.png.4abed265969fb4d84e16bd702e3cddc6.png

Link to comment
Share on other sites

 Share

×
×
  • Create New...