Jump to content
3 posts in this topic

Recommended Posts

I'm a real noob to OSX86, so bear with me.

I just installed iATKOS S3 v2. Everything works, except my BIOS is reset at almost every reboot. After some googling, I found out the DSDT is the cause. So I looked in mine with the help of DSDTSE (a gui utility), and I found, under RTC, this:

 

Device (RTC0)
			{
				Name (_HID, EisaId ("PNP0B00"))
				Name (CRS0, ResourceTemplate ()
				{
					IO (Decode16,
						0x0070,			 // Range Minimum
						0x0070,			 // Range Maximum
						0x00,			   // Alignment
						0x02,			   // Length
						)
					IRQNoFlags ()
						{8}
				})
				Name (CRS1, ResourceTemplate ()
				{
					IO (Decode16,
						0x0070,			 // Range Minimum
						0x0070,			 // Range Maximum
						0x00,			   // Alignment
						0x02,			   // Length
						)
				})
				Method (_CRS, 0, NotSerialized)
				{
					If (LEqual (^^HPET.NVID, 0x10DE))
					{
						Return (CRS1)
					}

					Return (CRS0)
				}
			}

 

What should I do? I don't know what to remove.

My whole DSDT.dsl is uploaded.

Please help.

Link to comment
https://www.insanelymac.com/forum/topic/237145-how-to-patch-dsdt/
Share on other sites

IMHO remove these lines

						IRQNoFlags ()
						{8}

So edited should look like this:

Device (RTC0)
			{
				Name (_HID, EisaId ("PNP0B00"))
				Name (CRS0, ResourceTemplate ()
				{
					IO (Decode16,
						0x0070,			 // Range Minimum
						0x0070,			 // Range Maximum
						0x00,			   // Alignment
						0x02,			   // Length
						)
				})
				Name (CRS1, ResourceTemplate ()

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...