Jump to content

[GUIDE/HOWTO] Snow Leopard 10.6.3/10.6.4 on Asus "Republic of Gamers" G60JX


quaestor
 Share

158 posts in this topic

Recommended Posts

as far as the USB stuff goes, you need to look for _PWR and either edit it, or add it.

 

it needs to be in both EHC0/1 and all of the USB's

 

(this will disbale powered usb ports when sleeping)

 

 

 

sooooo

 

 

let's take something like this:

 

 

 

 

			Device (EHC0)
		{
			Name (_ADR, 0x001D0000)
			Method (_PRW, 0, NotSerialized)
			{
				Return (GPRW (0x0D, 0x03))
			}

			Method (_DSM, 4, NotSerialized)
			{
				Store (Package (0x0B)
					{
						"AAPL,clock-id", 
						Buffer (One)
						{
							0x01
						}, 

						"device_type", 
						Buffer (0x05)
						{
							"EHCI"
						}, 

						"AAPL,current-available", 
						0x04B0, 
						"AAPL,current-extra", 
						0x02BC, 
						"AAPL,current-in-sleep", 
						0x03E8, 
						Buffer (One)
						{
							0x00
						}
					}, Local0)
				DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
				Return (Local0)
			}

			Method (_S3D, 0, NotSerialized)
			{
				Return (0x02)
			}

			Method (_S4D, 0, NotSerialized)
			{
				Return (0x02)
			}
		}

 

 

 

 

in this code block, you can see _PWR is right at the begining, so we will edit it to look like this:

 

 

 

				Method (_PRW, 0, NotSerialized)
			{
				Return (GPRW (0x0D, Zero))
			}

 

 

now, the other usb devices are missing _PRW, so we will need to ADD it exactly like we just did

(this will disable power on sleep)

 

 

 

(i'm not going to post the entire usb code, but a part)

 

 

so change this:

 

 

			Device (USB0)
		{
			Name (_ADR, 0x001D0001)
			OperationRegion (BAR0, PCI_Config, 0xC0, 0x05)
			Field (BAR0, ByteAcc, NoLock, Preserve)
			{
				UBL1,   16, 
						Offset (0x04), 
				P0WE,   1, 
				P1WE,   1, 
						Offset (0x05)
			}

 

 

to this:

 

 

			Device (USB0)
		{
			Name (_ADR, 0x001D0001)
			Method (_PRW, 0, NotSerialized)
			{
				Return (GPRW (0x0D, Zero))
			}
			OperationRegion (BAR0, PCI_Config, 0xC0, 0x05)
			Field (BAR0, ByteAcc, NoLock, Preserve)
			{
				UBL1,   16, 
						Offset (0x04), 
				P0WE,   1, 
				P1WE,   1, 
						Offset (0x05)
			}

 

 

do this for all usb devices, and recompile

Link to comment
Share on other sites

@wonslung

 

The EHCx seems to have worked fine but compile errors when applied to each USB?

 

 

Portion of the Compile Error Log Below

 

 

ACPI Warning: NsLookup: Type mismatch on EHC1 (Scope), searching for (Device) (20091214/nsaccess-731)

Maximum error count (200) exceeded
/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  6764:                 Method (_PRW, 0, NotSerialized)
Error    4057 -                                                                      Name already exists in scope ^  (_PRW)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7196:                 Method (_PRW, 0, NotSerialized)
Error    4068 -                                                          Object is not accessible from this scope ^  (_PRW)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7201:                 Method (_DSM, 4, NotSerialized)
Error    4068 -                                                          Object is not accessible from this scope ^  (_DSM)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7232:                 Method (_S3D, 0, NotSerialized)
Error    4068 -                                                          Object is not accessible from this scope ^  (_S3D)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7237:                 Method (_S4D, 0, NotSerialized)
Error    4068 -                                                          Object is not accessible from this scope ^  (_S4D)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7243:             Device (USB4)
Error    4068 -                                                      Object is not accessible from this scope ^  (USB4)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7245:                 Name (_ADR, 0x001A0001)
Error    4068 -                                                        Object is not accessible from this scope ^  (_ADR)

 

 

 

 

EDITED:

 

I see now why at the end of the USB code is this for each USB. Slightly different return code for each though;

 

 

                Method (USBW, 1, NotSerialized)
               {
                   If (UPAC (Arg0))
                   {
                       RSTA ()
                   }
               }

               Method (_PRW, 0, NotSerialized)
               {
                   Return (GPRW (0x04, 0x03))
               }
           }

 

 

 

EDITED:

 

I removed the PRW script at the end of each USB device section and added the script as you have it. Compiled fine but USB is still powered.

Link to comment
Share on other sites

@wonslung

 

The EHCx seems to have worked fine but compile errors when applied to each USB?

 

 

Portion of the Compile Error Log Below

 

 

ACPI Warning: NsLookup: Type mismatch on EHC1 (Scope), searching for (Device) (20091214/nsaccess-731)

Maximum error count (200) exceeded
/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  6764:                 Method (_PRW, 0, NotSerialized)
Error    4057 -                                                                      Name already exists in scope ^  (_PRW)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7196:                 Method (_PRW, 0, NotSerialized)
Error    4068 -                                                          Object is not accessible from this scope ^  (_PRW)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7201:                 Method (_DSM, 4, NotSerialized)
Error    4068 -                                                          Object is not accessible from this scope ^  (_DSM)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7232:                 Method (_S3D, 0, NotSerialized)
Error    4068 -                                                          Object is not accessible from this scope ^  (_S3D)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7237:                 Method (_S4D, 0, NotSerialized)
Error    4068 -                                                          Object is not accessible from this scope ^  (_S4D)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7243:             Device (USB4)
Error    4068 -                                                      Object is not accessible from this scope ^  (USB4)

/Users/osxfr33k/Library/Application Support/EvOSoftware/DSDT/DSDTFiles/dsdt.dsl  7245:                 Name (_ADR, 0x001A0001)
Error    4068 -                                                        Object is not accessible from this scope ^  (_ADR)

 

 

 

 

EDITED:

 

I see now why at the end of the USB code is this for each USB. Slightly different return code for each though;

 

 

                Method (USBW, 1, NotSerialized)
               {
                   If (UPAC (Arg0))
                   {
                       RSTA ()
                   }
               }

               Method (_PRW, 0, NotSerialized)
               {
                   Return (GPRW (0x04, 0x03))
               }
           }

 

 

 

EDITED:

 

I removed the PRW script at the end of each USB device section and added the script as you have it. Compiled fine but USB is still powered.

 

 

ok, theres 2 things which could be causing the problem.....

 

i haven't tested it on this laptop because mine is working fine without it, but:

 

 

you may need to modify Method (GPRW) (more on this later, i need to check something)

 

but the EASIEST thing to do would be remove it entirely (from usb at least)

 

instead of using the above code for _PWR use something like this:

 

			  Name (_PRW, Package (0x02)
			 {
				 0x03, 
				 Zero
		   })

 

 

report back =)

Link to comment
Share on other sites

@wonslung,

 

I have not tried it yet. You say your USB is working fine. Everything seems to be working for me to except a couple things. If there is a USB Flash Drive inserted and upon wake from sleep, I get a disk not properly ejected.

 

Do you have this problem and if not could you post your DSDT? Which Asus Model do you have? Do you see the Republic of Gamers LED symbol blink during sleep?

 

WIll this USB hack fix any of those conditions above because if it does not, then there is no need for this hack for me.

 

 

I will give it a try if this fix is meant to remove the issues above otherwise its not a fix for me either.

 

 

If this will possibly fix those issues above does the hack's hex code remain the same for each USB device, 0x02 and 0x03 or will that code be slightly different for each USB device as it is now in the last section of each USB device, the GPWR, return hex code is different. If you look at the end of each USB device they slightly vary in each section.

Link to comment
Share on other sites

Pretty slick to see some faces from the m1530 threads over in this one... looking forward to helping out now that I have one of these asus machines coming in this week.

 

going to read through and see if I cannot catch up for a pain free install... my m1530 was such a great machine, that hopefully this one will be somewhat close, in terms of a hackintosh build.

Link to comment
Share on other sites

going to read through and see if I cannot catch up for a pain free install... my m1530 was such a great machine, that hopefully this one will be somewhat close, in terms of a hackintosh build.

I've got it down to a science. Though I'm not sure if Quaestor has brought the first post completely up to date. At this point, you should be able to make an EFI boot disc, and just install from a 10.6.3 retail disk. I set up a Google Code page with some G60 related downloads. Should give you a good start.

 

http://code.google.com/p/g60jx-hackintosh/downloads/list

Link to comment
Share on other sites

@wonslung,

 

I have not tried it yet. You say your USB is working fine. Everything seems to be working for me to except a couple things. If there is a USB Flash Drive inserted and upon wake from sleep, I get a disk not properly ejected.

 

Do you have this problem and if not could you post your DSDT? Which Asus Model do you have? Do you see the Republic of Gamers LED symbol blink during sleep?

 

WIll this USB hack fix any of those conditions above because if it does not, then there is no need for this hack for me.

 

 

I will give it a try if this fix is meant to remove the issues above otherwise its not a fix for me either.

 

 

If this will possibly fix those issues above does the hack's hex code remain the same for each USB device, 0x02 and 0x03 or will that code be slightly different for each USB device as it is now in the last section of each USB device, the GPWR, return hex code is different. If you look at the end of each USB device they slightly vary in each section.

 

 

so you're saying that it gives this warning upon wake:

 

 

 

20101005-p3xdua5h3pgqxfsm13c33mkw5p.jpg

 

 

I thought the symbol was supposed to blink, but it should be really easy to make it NOT blink if you do not want it to blink.

 

Usb ports aren't powered off on a REAL mac, so i don't typically do that unless i have a problem PUTTING a machine to sleep (many netbooks and laptops, for example, won't sleep, and an easy "fix" is to remove power from usb in the fashion listed above. This isn't considered the "proper" fix but it is an easy fix which DOES work. If this is what you want, then it should work, yes.

 

 

I will have to test to see if i suffer from the ejection issue, i will report back.

 

 

 

EDIT:

 

 

I DO have this problem, and i just found a new issue. It seems that if i have parallels running, if i put the machine to sleep and bring it back up, it will come up without keyboard and mouse.

 

 

I should be able to solve both. I will work on it and post a solution later. I will also post a solution to the flashing lights if you do not wish this to happen.

Link to comment
Share on other sites

@wonslung,

 

Yes that is the exact error message I get. My Mouse comes up after a couple seconds after sleep. It would be interesting to see the fixes for the disk error. I tried to do as much as I could in the EHC0 and EHC1 script to fix this error and nothing has worked thus far. See my posted DSDT several posts above.

 

The Blinking LED would also be an intersting fix as well.

 

On my Dell XPS M1530 the USB ports do power down. Not sure what the DSDT fix was for the M1530. Thread below. I have gotten a ton of ideas for DSDT fixes in general from immo's thread. Brett Whitmann and others have done a remarkable job on this project. My XPS M1530 runs actually better than a Mac Book Pro. I am serious when I say performance and reliability. Must be lucky with the chipsets.

 

Once we perfect the DSDT, our Asus Boards should be close to a 100% mac clone. In some cases even better than a mac clone

 

 

 

http://www.insanelymac.com/forum/index.php?showtopic=190780

Link to comment
Share on other sites

@wonslung,

 

Yes that is the exact error message I get. My Mouse comes up after a couple seconds after sleep. It would be interesting to see the fixes for the disk error. I tried to do as much as I could in the EHC0 and EHC1 script to fix this error and nothing has worked thus far. See my posted DSDT several posts above.

 

The Blinking LED would also be an intersting fix as well.

 

On my Dell XPS M1530 the USB ports do power down. Not sure what the DSDT fix was for the M1530. Thread below. I have gotten a ton of ideas for DSDT fixes in general from immo's thread. Brett Whitmann and others have done a remarkable job on this project. My XPS M1530 runs actually better than a Mac Book Pro. I am serious when I say performance and reliability. Must be lucky with the chipsets.

 

Once we perfect the DSDT, our Asus Boards should be close to a 100% mac clone. In some cases even better than a mac clone

 

 

 

http://www.insanelymac.com/forum/index.php?showtopic=190780

 

 

this just boils down to numbers in the dells case. It's a very popular laptop. If we had a dsdt guru who owned our machine, we'd have much better luck. I'm far from a master, though i do know a little. Everything you want CAN be done in dsdt. Powering down the usb ports is easy, but that is NOT what happens on a real mac (on a real mac the usb ports stay powered and when you put something in (say an ipod) it wakes up)

 

 

but if you want the usb powered off, try my second fix, it SHOULD work.

Link to comment
Share on other sites

I'm still having problems putting my laptop to sleep when running MacOS.... I have the DSDT.aml in my /Extra/ folder as well as in my /, but when I try to put the computer to sleep either VIA the Apple menu or by closing the lid, the Keyboard lights stay on, as well as the indicator lights, and I cannot wake the computer up by any means... I have to do a hard shutdown and boot the computer again..

 

I'm a little confused, I have to say, lol....

Link to comment
Share on other sites

@wonslung,

 

Just want to clarify before I try the second fix for each USB device. Just remove the _PWR code which is at the end of each USB device and replace it with:

 

              Name (_PRW, Package (0x02)
                {
                    0x03, 
                    Zero
              })

 

Apply the original _PWR you had for EHC0 and EHC1, correct?

 

DO not apply that fix to the USB correct? Just replace the _PWR at the end of each USB device with Name (_PWR, Package (0x02) ...

 

I just want to make sure that the only DSDT edit for the USB device is the code, Name _PWR... above?

Link to comment
Share on other sites

@wonslung,

 

Just want to clarify before I try the second fix for each USB device. Just remove the _PWR code which is at the end of each USB device and replace it with:

 

              Name (_PRW, Package (0x02)
                {
                    0x03, 
                    Zero
              })

 

Apply the original _PWR you had for EHC0 and EHC1, correct?

 

DO not apply that fix to the USB correct? Just replace the _PWR at the end of each USB device with Name (_PWR, Package (0x02) ...

 

I just want to make sure that the only DSDT edit for the USB device is the code, Name _PWR... above?

 

 

you want to change the ones which have it to look like the above, and add it to the usb devices which do not.

 

It basically tells the system to power down all usb devices when put into sleep state

 

soo all usb devices need it to achieve what you are asking for.

 

 

 

I'm going to start a new dsdt today from scratch....I'll also try to make a post which the fixes i've added or fixes i could add when i get time.

 

 

@fragment, sounds like you need to edit your dsdt and/or remove/add some kexts.

 

 

you should NEVER use someone elses dsdt downloaded from the net....you should always boot wihtout a dsdt, then manually extract and edit yours.

 

If you lack the skillz to do this, then you should extract your dsdt and ask someone who CAN do it to help you.

 

The irc has a lot of people willing to help if you ask nicely.

Link to comment
Share on other sites

@fragment, sounds like you need to edit your dsdt and/or remove/add some kexts.

 

 

you should NEVER use someone elses dsdt downloaded from the net....you should always boot wihtout a dsdt, then manually extract and edit yours.

 

If you lack the skillz to do this, then you should extract your dsdt and ask someone who CAN do it to help you.

 

The irc has a lot of people willing to help if you ask nicely.

 

Thank you, that would actually be a great help. I did compile my own DSDT when I first installed OS X and have been using fixes found in this thread and in others. I'll check on the IRC to see who might be able to help me :rolleyes:

Link to comment
Share on other sites

@wonslung,

 

USB is still powered during sleep. We have to think of something else or something else in the USB device is causing it not to power off. Maybe the LED. Is that LED device in any way associated with the USB. What is that LED device called in the DSDT?

 

Maybe this part of the EHCx script needs more work.

 

I have seen different values for the AAPL current in the DSDT which is suppose to fix the USB disk not inserted properly message after wake.

 

I have seen these values so far. 0x03E8, 0x0BB8, 0x09C4.

 

Maybe we have to figure out what current value we need for our Asus Notebooks. Mine is set to 0x03E8 and tried the other two with no luck.

 

"AAPL,current-in-sleep", // to solve a problems with sleep when stick is inserted

0x03E8

 

Is there some Debug DSDT around so one can actually observe which device correlates to which script in the DSDT? I think I saw something over at the ProjectOSX forum on this.

 

Thanks

Link to comment
Share on other sites

Man, my brains just don't seem to work anymore; or else this board is really hard to configure, 'cause I'm still not getting notifications... Guess I'll have to check in every day :)

Some musings:

  • FWIW - I'm almost certain that the LED embedded in the lid "glows" (slowly dims and brightens) when the laptop is sleeping under Windows 7. Potentially annoying (apparently 'very annoying' for some people ;) ), but expected behavior. Not to say that it can't be stopped in some way...
  • FWIW - I've had to do quite a bit of fiddling with both this laptop (Win 7) and my P5Q3 Win 7 desktop to get sleep to happen. In both cases, I had to manually (command-line) take all the USB ports n' hubs out of the list of wake-triggering devices.
  • I've also had the keyboard and mouse not respond after wake
  • F1x0r wlan wpa2z plx kthx!!1! :D

 

I haven't edited the "front page" in a while; I need to get around to it...

Link to comment
Share on other sites

FWIW - I'm almost certain that the LED embedded in the lid "glows" (slowly dims and brightens) when the laptop is sleeping under Windows 7.

I can attest to this behavior. Yes the LED's blink while the laptop is sleeping under windows, but not when it's hibernating or "deep sleep".

 

I think deep sleep is the goal here since these laptops last about an hour before you need to run to an outlet or switch out the battery. With these DSDT hacks, I think my laptop is deep sleeping. I'm pretty sure it makes itself a hibernate file, but it's obviously confused since it's blinking it's LED's and powered USB's when it should be completely off.

 

OFF TOPIC but good news for our laptops, I got one of the $300 i7-830QM chips from eBay and swapped out my i5. Now I have 8 threads of power! And for those of you that don't know, you can get the internal Bluetooth unit for $15 and a 7800mah (2+ hours) battery for about $55.

Link to comment
Share on other sites

  • 2 weeks later...

Completely unrelated to my previous postings, but I have an interesting issue that I haven't been able to fix.

 

It has to do with the clock. I have the right time whenever I boot into OS X. It doesn't ever move fast anymore. However, whenever I boot into Windows AFTER having booted into Mac OS X, the clock is 4 hours ahead.

 

This is solved by simply syncing to Internet time again. This won't happen if I boot into Windows right off the bat, only if I boot OS X first, then reboot into windows.

 

Very frustrating when I've been coding in OSX and then want to game on Windows, lol....

 

Is anyone else having this problem? Does anyone have a fix? Any help is appreciated :)

Link to comment
Share on other sites

[edit update] On Vista SP2, Windows 7 and Server 2008 R2, do the following in the Registry: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation] "RealTimeIsUniversal"=dword:00000001

 

If that looks like chicken scratch, google for a beginner's guide to editing the Windows Registry; not to be rude, but I don't do Windows support - queries will be forwarded to /dev/null

 

I wish I could remember where I found this fix and how to actually do it, but I can tell you that you have to change a Windows Registry entry to tell Windows to use UTC instead of local time (Windows will still compensate properly and display the local time). Google :)

 

Completely unrelated to my previous postings, but I have an interesting issue that I haven't been able to fix.

 

It has to do with the clock. I have the right time whenever I boot into OS X. It doesn't ever move fast anymore. However, whenever I boot into Windows AFTER having booted into Mac OS X, the clock is 4 hours ahead.

 

This is solved by simply syncing to Internet time again. This won't happen if I boot into Windows right off the bat, only if I boot OS X first, then reboot into windows.

 

Very frustrating when I've been coding in OSX and then want to game on Windows, lol....

 

Is anyone else having this problem? Does anyone have a fix? Any help is appreciated :)

Link to comment
Share on other sites

Hello,

 

I wish I had more to contribute to this cool project aside from yet another Atheros WiFi question, but I've seemingly exhausted all relevant material and personal ability trying to figure this out.

 

To the point:

 

I was experiencing the same Airport connected-but-not-connected issue as fragment137, but couldn't retrieve a connection from the Internet (or my router settings page) even after changing the encryption type to open.

 

Furthermore, in an attempt to solve it, I seem to have rendered the IO8211Family kext useless. I've tried installing the 10.6.5 kext several times now, utilizing Kext Helper b7 and Kext Utility. I've also tried installing via command line, repairing permissions afterwards.

 

Currently, Airport will not detect my card and is in permanent Off state. I've gotten it to work every now and then, but invariably destroy those efforts trying to achieve a "real" connection.

 

I'm now at a loss. This is my first working Hackintosh build (never had hardware this compatible), and I'm quite inexperienced in this process. Previous Linux use makes things easier, but I feel as though I might have missed something in the initial setup (DSDT trickery threw me for a loop, maybe something there?). I also seem to be lacking a few files I see listed in various tutorials on this board (/Extra/CMBIOS.plst and others).

 

I suppose I would try a re-install in any other case, but I'd like to view that as a last resort. I currently have a stable OSX build running alongside Win7 with the Chameleon bootloader, and spent the past day and a half getting this far. Any help would be tremendously appreciated.

 

Here are the outputs of everything that seems slightly relevant:

 

 

 

General:

 

System Version: Mac OS X 10.6.4 (10F569)

Kernel Version: Darwin 10.4.0

 

Airport Software Versions:

 

Menu Extra: 6.2.1 (621.1)

configd plug-in: 6.2.3 (623.1)

System Profiler: 6.0 (600.9)

Network Preference: 6.2.1 (621.1)

AirPort Utility: 5.4.2 (542.23)

IO80211 Family: 1.1 (110.19)

 

lspci Output:

 

00:00.0 Host bridge: Intel Corporation Unknown device 0044 (rev 12)

00:01.0 PCI bridge: Intel Corporation Unknown device 0045 (rev 12)

00:16.0 Communication controller: Intel Corporation Unknown device 3b64 (rev 06)

00:1a.0 USB Controller: Intel Corporation Unknown device 3b3c (rev 06)

00:1b.0 Audio device: Intel Corporation Unknown device 3b56 (rev 06)

00:1c.0 PCI bridge: Intel Corporation Unknown device 3b42 (rev 06)

00:1c.1 PCI bridge: Intel Corporation Unknown device 3b44 (rev 06)

00:1c.2 PCI bridge: Intel Corporation Unknown device 3b46 (rev 06)

00:1c.4 PCI bridge: Intel Corporation Unknown device 3b4a (rev 06)

00:1c.5 PCI bridge: Intel Corporation Unknown device 3b4c (rev 06)

00:1d.0 USB Controller: Intel Corporation Unknown device 3b34 (rev 06)

00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev a6)

00:1f.0 ISA bridge: Intel Corporation Unknown device 3b09 (rev 06)

00:1f.2 SATA controller: Intel Corporation Unknown device 3b29 (rev 06)

00:1f.3 SMBus: Intel Corporation Unknown device 3b30 (rev 06)

00:1f.6 Signal processing controller: Intel Corporation Unknown device 3b32 (rev 06)

01:00.0 VGA compatible controller: nVidia Corporation Unknown device 0cb1 (rev a2)

01:00.1 Audio device: nVidia Corporation Unknown device 0be4 (rev a1)

03:00.0 Network controller: Atheros Communications Inc. Unknown device 002b (rev 01)

06:00.0 SD Host controller: Ricoh Co Ltd Unknown device e822 (rev 01)

06:00.1 System peripheral: Ricoh Co Ltd Unknown device e230 (rev 01)

06:00.2 System peripheral: Ricoh Co Ltd Unknown device e852 (rev 01)

06:00.3 FireWire (IEEE 1394): Ricoh Co Ltd Unknown device e832 (rev 01)

07:00.0 Ethernet controller: Attansic Technology Corp. Unknown device 1063 (rev c0)

3f:00.0 Host bridge: Intel Corporation Unknown device 2c62 (rev 02)

3f:00.1 Host bridge: Intel Corporation Unknown device 2d01 (rev 02)

3f:02.0 Host bridge: Intel Corporation Unknown device 2d10 (rev 02)

3f:02.1 Host bridge: Intel Corporation Unknown device 2d11 (rev 02)

3f:02.2 Host bridge: Intel Corporation Unknown device 2d12 (rev 02)

3f:02.3 Host bridge: Intel Corporation Unknown device 2d13 (rev 02)

 

kextstat:

 

Index Refs Address    Size       Wired      Name (Version) <Linked Against>

   1   56 0          0          0          com.apple.kpi.bsd (10.4.0)

   2    4 0          0          0          com.apple.kpi.dsep (10.4.0)

   3   76 0          0          0          com.apple.kpi.iokit (10.4.0)

   4   82 0          0          0          com.apple.kpi.libkern (10.4.0)

   5   65 0          0          0          com.apple.kpi.mach (10.4.0)

   6   27 0          0          0          com.apple.kpi.private (10.4.0)

   7   43 0          0          0          com.apple.kpi.unsupported (10.4.0)

   8    0 0          0          0          com.apple.kernel.6.0 (7.9.9)

   9    0 0          0          0          com.apple.kernel.bsd (7.9.9)

  10    1 0          0          0          com.apple.kernel.iokit (7.9.9)

  11    1 0          0          0          com.apple.kernel.libkern (7.9.9)

  12    0 0          0          0          com.apple.kernel.mach (7.9.9)

  13   11 0x526ba000 0x4000     0x3000     com.apple.iokit.IOACPIFamily (1.3.0) <7 6 4 3>

  14   15 0x528b6000 0x11000    0x10000    com.apple.iokit.IOPCIFamily (2.6) <7 5 4 3>

  15    2 0x52957000 0x41000    0x40000    com.apple.driver.AppleACPIPlatform (1.3.2) <14 13 7 6 5 4 3>

  16    0 0x4c47d000 0x2000     0x1000     es.osx86.driver.EvOreboot (1.0.3) <4 3>

  17    0 0x524c5000 0x2000     0x1000     org.tgwbd.driver.NullCPUPowerManagement (1.0.0d2) <7 4 3>

  18    0 0x524c7000 0x2000     0x1000     sk.triaxis.kext.SleepEnabler (1.0.0) <7 4 3>

  19    0 0x52925000 0x20000    0x1f000    com.apple.driver.AppleIntelCPUPowerManagement (105.10.0) <7 6 5 4 3 1>

  20    8 0x529fb000 0x18000    0x17000    com.apple.iokit.IOStorageFamily (1.6.1) <7 6 5 4 3 1>

  21    0 0x52945000 0x11000    0x10000    com.apple.driver.DiskImages (283) <20 7 6 5 4 3 1>

  22    0 0x52abb000 0x8000     0x7000     com.apple.nke.applicationfirewall (2.1.11) <7 6 5 4 3 1>

  23    2 0x52ab1000 0x3000     0x2000     com.apple.kext.AppleMatch (1.0.0d1) <4 1>

  24    0 0x52ac3000 0x5000     0x4000     com.apple.security.quarantine (0) <23 7 6 5 4 2 1>

  25    0 0x52ad3000 0x8000     0x7000     com.apple.security.sandbox (0) <23 7 6 5 4 2 1>

  26    0 0x52ab7000 0x3000     0x2000     com.apple.security.TMSafetyNet (6) <7 6 5 4 2 1>

  27    0 0x52ab4000 0x3000     0x2000     com.apple.driver.AppleAPIC (1.4) <4 3>

  28    1 0x52ad0000 0x3000     0x2000     com.apple.iokit.IOSMBusFamily (1.1) <5 4 3>

  29    0 0x52ac8000 0x5000     0x4000     com.apple.driver.AppleACPIEC (1.3.2) <28 15 13 5 4 3>

  30    0 0x52adb000 0x4000     0x3000     com.apple.driver.AppleSMBIOS (1.6) <7 4 3>

  31    0 0x52b23000 0x3000     0x2000     com.apple.driver.AppleHPET (1.5) <13 7 5 4 3>

  33    0 0x59731000 0x6000     0x5000     com.apple.driver.AppleRTC (1.3.1) <13 5 4 3 1>

  34    0 0x52bfd000 0x3000     0x2000     com.yourcompany.driver.AppleACPIPS2Nub (1.0.0d1) <13 7 5 4 3 1>

  35    4 0x597f6000 0x3c000    0x3b000    com.apple.iokit.IOHIDFamily (1.6.4) <7 6 5 4 3 1>

  36    0 0x529f4000 0x4000     0x3000     com.apple.driver.AppleACPIButtons (1.3.2) <35 15 13 7 6 5 4 3 1>

  37    0 0x529f1000 0x2000     0x1000     com.meklort.driver.AsusHotkeys (1.0.15) <35 13 7 6 5 4 3 1>

  38    0 0x529e9000 0x4000     0x3000     org.netkas.fakesmc (2) <13 7 4 3>

  39    3 0x5976e000 0x6000     0x5000     com.apple.iokit.IOAHCIFamily (2.0.4) <5 4 3 1>

  40    0 0x5990e000 0x14000    0x13000    com.apple.driver.AppleAHCIPort (2.1.2) <39 14 5 4 3 1>

  41    5 0x59981000 0x31000    0x30000    com.apple.iokit.IOUSBFamily (4.0.2) <14 7 5 4 3 1>

  42    0 0x598e6000 0x16000    0x15000    com.apple.driver.AppleUSBEHCI (4.0.2) <41 14 7 5 4 3 1>

  43    1 0x529f8000 0x3000     0x2000     com.apple.driver.AppleEFIRuntime (1.3.0) <7 5 4 3>

  44    2 0x598fc000 0x5000     0x4000     com.apple.driver.ApplePS2Controller (1.1.0) <5 4 3>

  45    2 0x59922000 0x43000    0x42000    com.apple.iokit.IOFireWireFamily (4.2.6) <5 4 3 1>

  46    0 0x59a24000 0x27000    0x26000    com.apple.driver.AppleFWOHCI (4.7.1) <45 14 7 6 5 4 3 1>

  47    0 0x59965000 0x6000     0x5000     com.apple.driver.AppleEFINVRAM (1.3.0) <43 7 5 4 3>

  48    0 0x52b05000 0x2000     0x1000     com.apple.iokit.IOUSBUserClient (4.0.0) <41 7 5 4 3 1>

  49    0 0x59761000 0x3000     0x2000     com.apple.driver.ApplePS2Keyboard (1.2.0) <44 35 7 6 5 4 3 1>

  50    0 0x5996b000 0x11000    0x10000    com.apple.driver.AppleUSBHub (4.0.0) <41 5 4 3 1>

  51    0 0x59a05000 0x13000    0x12000    com.apple.iokit.IOAHCIBlockStorage (1.6.2) <39 20 5 4 3 1>

  52    3 0x59b05000 0x1a000    0x19000    com.apple.iokit.IOSCSIArchitectureModelFamily (2.6.5) <5 4 3 1>

  53    0 0x59ac8000 0x9000     0x8000     com.apple.iokit.IOAHCISerialATAPI (1.2.4) <52 39 5 4 3 1>

  54    2 0x59bf7000 0x16000    0x15000    com.apple.iokit.IONetworkingFamily (1.9) <7 6 5 4 3 1>

  56    0 0x59ab4000 0x6000     0x5000     com.apple.AppleFSCompression.AppleFSCompressionTypeZlib (1.0.0d1) <6 4 3 2 1>

  57    0 0x59ac4000 0x3000     0x2000     com.apple.driver.XsanFilter (402.1) <20 5 4 3 1>

  58    0 0x59ada000 0x5000     0x4000     com.apple.BootCache (31) <7 6 5 4 3 1>

  59    3 0x59bda000 0x8000     0x7000     com.apple.iokit.IOCDStorageFamily (1.6) <20 5 4 3 1>

  60    2 0x59c2a000 0x6000     0x5000     com.apple.iokit.IODVDStorageFamily (1.6) <59 20 5 4 3 1>

  61    1 0x59bf2000 0x5000     0x4000     com.apple.iokit.IOBDStorageFamily (1.6) <60 59 20 5 4 3 1>

  62    0 0x59c80000 0x18000    0x17000    com.apple.iokit.IOSCSIMultimediaCommandsDevice (2.6.5) <61 60 59 52 20 5 4 3 1>

  63    0 0x59bcc000 0x7000     0x6000     com.apple.iokit.SCSITaskUserClient (2.6.5) <52 20 5 4 3 1>

  64    1 0x59adf000 0x4000     0x3000     com.apple.driver.AppleUSBComposite (3.9.0) <41 4 3 1>

  65    0 0x59ae9000 0x4000     0x3000     com.apple.driver.AppleUSBMergeNub (4.0.0) <64 41 4 3 1>

  66    6 0x59f08000 0x2c000    0x2b000    com.apple.iokit.AppleProfileFamily (41) <14 7 6 5 4 3 1>

  68    0 0x59e1c000 0xb000     0xa000     com.apple.driver.ApplePS2Trackpad (1.1.4) <44 35 7 6 5 4 3 1>

  69    0 0x59e0e000 0x3000     0x2000     com.apple.driver.AppleLPC (1.4.12) <14 5 4 3>

  71    1 0x59e76000 0xb000     0xa000     com.apple.driver.IOPlatformPluginFamily (4.1.2b1) <6 5 4 3>

  72    2 0x59e8c000 0xa000     0x9000     com.apple.driver.AppleSMC (3.0.1d2) <13 7 5 4 3>

  73    0 0x59ea1000 0x10000    0xf000     com.apple.driver.ACPI_SMC_PlatformPlugin (4.1.2b1) <72 71 14 13 7 6 5 4 3>

  74    0 0x59e05000 0x7000     0x6000     ru.Applelife.AtherosL1cEthernet (1.0.1b9) <54 14 5 4 3 1>

  75    4 0x59eb1000 0x22000    0x21000    com.apple.iokit.IOGraphicsFamily (2.1) <14 7 5 4 3>

  76    2 0x59e67000 0xd000     0xc000     com.apple.iokit.IONDRVSupport (2.1) <75 14 7 5 4 3>

  77    2 0x5a8b1000 0x2e1000   0x2e0000   com.apple.NVDAResman (6.1.6) <76 75 14 5 4 3 1>

  78    0 0x5a585000 0xac000    0xab000    com.apple.GeForce (6.1.6) <77 76 75 14 7 6 5 4 3 1>

  81    0 0x59f6b000 0x9000     0x8000     com.apple.iokit.IOFireWireIP (2.0.3) <54 45 5 4 3 1>

  82    0 0x5b497000 0x422000   0x421000   com.apple.nvidia.nv50hal (6.1.6) <77 4 3>

  85    1 0x59f81000 0x4000     0x3000     com.apple.kext.OSvKernDSPLib (1.3) <5 4>

  86    2 0x5a087000 0x18000    0x17000    com.apple.iokit.IOAudioFamily (1.7.6fc2) <85 5 4 3 1>

  87    0 0x5a0bc000 0x20000    0x1f000    org.voodoo.driver.VoodooHDA (0.2.61) <86 14 7 5 4 3>

  88    0 0x5a067000 0x4000     0x3000     com.apple.driver.AudioIPCDriver (1.1.2) <86 5 4 3 1>

  89    0 0x5a269000 0x5000     0x4000     com.apple.driver.AppleUpstreamUserClient (3.3.2) <75 14 13 7 5 4 3 1>

  91    0 0x5a263000 0x6000     0x5000     com.apple.Dont_Steal_Mac_OS_X (7.0.0) <72 7 4 3 1>

  94    1 0x5a26e000 0x9000     0x8000     com.apple.iokit.IOSerialFamily (10.0.3) <7 6 5 4 3 1>

  95    0 0x5a2ba000 0x9000     0x8000     com.apple.iokit.IOBluetoothSerialManager (2.3.3f8) <94 7 5 4 3 1>

  96    0 0x5a29d000 0xb000     0xa000     com.apple.iokit.IOSurface (74.0) <7 5 4 3 1>

  97    0 0x5a277000 0x3000     0x2000     com.x86dev.driver.lspcidrv (1.0) <11 10>

  98    0 0x524fb000 0x3000     0x2000     com.apple.driver.AppleProfileCallstackAction (20) <66 5 4 3 1>

  99    0 0x52538000 0x3000     0x2000     com.apple.driver.AppleProfileKEventAction (10) <66 4 3 1>

 102    0 0x524cc000 0x3000     0x2000     com.apple.driver.AppleProfileRegisterStateAction (10) <66 4 3 1>

 103    0 0x52543000 0x3000     0x2000     com.apple.driver.AppleProfileThreadInfoAction (14) <66 6 4 3 1>

 104    0 0x5255d000 0x3000     0x2000     com.apple.driver.AppleProfileTimestampAction (10) <66 5 4 3 1>

 105    0 0x525d5000 0x3000     0x2000     com.apple.driver.AppleProfileReadCounterAction (17) <66 6 4 3>

 106    2 0x5a3c8000 0x60000    0x5f000    com.apple.filesystems.ntfs (3.2) <7 6 5 4 1>

 107    0 0x59de9000 0xa000     0x9000     com.apple.filesystems.autofs (2.1.0) <7 6 5 4 3 1>

 108    0 0x59ef9000 0x5000     0x4000     com.apple.driver.AppleHWSensor (1.9.3d0) <5 4 3>

Link to comment
Share on other sites

I am following these directions step by step using the newest empire booter and a 10.6 retail disc. my bios is v 206 and its not working. I keep running into a problem every time it goes to start up. I put in empire. Switch to retail. Select the dvd to install from, put in -v. It gives me some line of code so it starts working, then after about 10 seconds maybe it stops and says "Press any key to continue." So when I do the screen goes black and my computer restarts. Does anyone know why this might be? I have the Asus G60JX from best buy as well and it just doesn't want to work for me.

Link to comment
Share on other sites

I had a similar issue as well, Rob24. I can't recall the exact procedure that fixed it, as I tried a number of things. What sticks out in my mind, was the fact that my first Empire boot disk was bad. Try re-burning it at a slower speed and verifying it?

 

I also went into my BIOS settings and turned many of the extraneous options off. One of these allowed me to boot into the Snow Leopard installation.

Link to comment
Share on other sites

I'm going to try to burning the Empire disc and also what do you mean by extraneous options? Like which options did you turn off? Because I dont know what is needed or not.

I had a similar issue as well, Rob24. I can't recall the exact procedure that fixed it, as I tried a number of things. What sticks out in my mind, was the fact that my first Empire boot disk was bad. Try re-burning it at a slower speed and verifying it?

 

I also went into my BIOS settings and turned many of the extraneous options off. One of these allowed me to boot into the Snow Leopard installation.

Link to comment
Share on other sites

I'm going to try to burning the Empire disc and also what do you mean by extraneous options? Like which options did you turn off? Because I dont know what is needed or not.

 

I turned off:

 

Advanced - ASUS FancyStart and Legacy USB Support

Security - All I/O Interfaces Unlocked

Boot - PXE Boot

 

Whether any of these made a difference or not, I'm not sure, but it's the best I can do! I'm leaning towards reburning Empire being your best bet, but these couldn't hurt.

Link to comment
Share on other sites

 Share

×
×
  • Create New...