InfiniteMac OSx86  


Reply
 
Thread tools Display modes
  #1  
Old 11-21-2009, 05:54 PM
lidas lidas is offline
Cheetah
 
Join Date: Oct 2009
Posts: 2
Wifi not work with snow 64 bit mode

I have a problem
Wifi not work with snow 64 bit mode
I have a mobo P%K-E WiFi
you have any solution thanks
Reply With Quote
  #2  
Old 11-21-2009, 11:14 PM
fishcow fishcow is offline
Puma
 
Join Date: Aug 2009
Posts: 25
Quote:
Originally Posted by lidas View Post
I have a problem
Wifi not work with snow 64 bit mode
I have a mobo P%K-E WiFi
you have any solution thanks
AFAIK, there is no solution for Wifi 64 Bit for the built-in Realtek on the P5K-E.
Drivers and Utility application are 32 bit only.
Reply With Quote
  #3  
Old 11-22-2009, 02:51 PM
lukelovett lukelovett is offline
Cheetah
 
Join Date: Sep 2009
Posts: 8
Don't know if this has been mentioned, but Temp Sensors now work with the release of FakeSMC from Netkas (Great work! - all credit to Netkas!) I use istat menus to put the temps in the menu bar.

BTW, P5K-E is a great board for overclocking, so this is a very useful addition.

Lancelotu, maybe you can update the Kext Pack?
Reply With Quote
  #4  
Old 11-23-2009, 01:41 PM
Snoc Snoc is offline
Cheetah
 
Join Date: Aug 2009
Posts: 14
Hi!

There are a new kext "OSXRestart.kext" by Master Chief that solved my restart after wakeup issues. If you try this you have to remove OpenHaltRestart.kext and EvOreboot.kext

Kind regards,
Snoc
Reply With Quote
  #5  
Old 12-02-2009, 11:20 PM
fishcow fishcow is offline
Puma
 
Join Date: Aug 2009
Posts: 25
Quote:
Originally Posted by Snoc View Post
Hi!

There are a new kext "OSXRestart.kext" by Master Chief that solved my restart after wakeup issues. If you try this you have to remove OpenHaltRestart.kext and EvOreboot.kext

Kind regards,
Snoc
OSXRestart does solve the restart after sleep issue, however I can't get Shutdown to work if I remove Ev0reboot.
Apparently you can fix this in DSDT - but I have no idea
Reply With Quote
  #6  
Old 12-03-2009, 03:45 PM
Snoc Snoc is offline
Cheetah
 
Join Date: Aug 2009
Posts: 14
Quote:
Originally Posted by fishcow View Post
OSXRestart does solve the restart after sleep issue, however I can't get Shutdown to work if I remove Ev0reboot.
Apparently you can fix this in DSDT - but I have no idea
I get shutdown plus restart working using Ev0reboot and OSXRestart together. I have added both extension to /Extra/Extension

I hope this worked for you

Kind regards,
Snoc
Reply With Quote
  #7  
Old 12-09-2009, 11:46 PM
gp-se gp-se is offline
Cheetah
 
Join Date: Dec 2009
Posts: 5
hey guys great guide, I'm running snow leopard 10.6 right now, if I update to 10.6.2 what do I need to do exactly?
Reply With Quote
  #8  
Old 02-04-2010, 10:40 AM
walterav walterav is offline
Jaguar
 
Join Date: Aug 2009
Posts: 45
Quote:
Originally Posted by fishcow View Post
OSXRestart does solve the restart after sleep issue, however I can't get Shutdown to work if I remove Ev0reboot.
Apparently you can fix this in DSDT - but I have no idea
OSXRestart.kext indeed only fixes restart and performing a restart after successful waking.

I found the person/location of the DSDT shutdown fix for ASUS P5K-pro boards its been done by "Master Chief" on "Insanelymac". This is the location of the thread the fix is partly described on the 8thpage "Lo-Fi version of website" search for "_PTS".

http://www.insanelymac.com/forum/lof...88920-350.html

I think it will also work on our Motherboards. The only problem is that the the DSDT patch is not fully described, there are more parts of the DSDT that needs to be patched before the shutdown patch works.

I asked for some extra input. Keep ya updated...
Reply With Quote
  #9  
Old 02-08-2010, 12:13 AM
walterav walterav is offline
Jaguar
 
Join Date: Aug 2009
Posts: 45
Quote:
Originally Posted by fishcow View Post
OSXRestart does solve the restart after sleep issue, however I can't get Shutdown to work if I remove Ev0reboot.
Apparently you can fix this in DSDT - but I have no idea
Quote:
Originally Posted by walterav View Post
I asked for some extra input. Keep ya updated...
Shutdown fix DSDT solution by MasterChief please test!
http://www.insanelymac.com/forum/ind...opid=1405756&#

Change the following two segments of your DSDT, "Device (SBRG)" and "_PTS" .
original _PTS
Code:
Method (_PTS, 1, NotSerialized)
    {
        Store (Arg0, DBG8)
        PTS (Arg0)
        Store (Zero, Index (WAKP, Zero))
        Store (Zero, Index (WAKP, One))
        If (LAnd (LEqual (Arg0, 0x04), LEqual (OSFL (), 0x02)))
        {
            Sleep (0x0BB8)
        }

        Store (ASSB, WSSB)
        Store (AOTB, WOTB)
        Store (AAXB, WAXB)
        Store (Arg0, ASSB)
        Store (OSFL (), AOTB)
        Store (Zero, AAXB)
    }
patched _PTS #added part to begin and a } at end
Code:
Method (_PTS, 1, NotSerialized)
    {
        If (LEqual (Arg0, 0x05))                               // S5 (shutdown).
        {
            Store (One, \_SB.PCI0.SBRG.AG3E)                   // Return to S5 after a power failure.
        }
        Else
        {
        Store (Arg0, DBG8)
        PTS (Arg0)
        Store (Zero, Index (WAKP, Zero))
        Store (Zero, Index (WAKP, One))
        If (LAnd (LEqual (Arg0, 0x04), LEqual (OSFL (), 0x02)))
        {
            Sleep (0x0BB8)
        }

        Store (ASSB, WSSB)
        Store (AOTB, WOTB)
        Store (AAXB, WAXB)
        Store (Arg0, ASSB)
        Store (OSFL (), AOTB)
        Store (Zero, AAXB)
        }
    }
original Device (SBRG)
Code:
Device (SBRG)
            {
                Name (_ADR, 0x001F0000)
                Device (IELK)
// rest of device IELK
patched Device (SBRG) #added a part between Name (_ADR,xxx and Device (IELK)
Code:
            Device (SBRG)
            {
                Name (_ADR, 0x001F0000)
                // Newly added for EC support.
                OperationRegion (LPC0, PCI_Config, 0xA0, 0x54)    // General PM Configuration 3 Register (ICH9R-316972.pdf / 13.8.1.3 / page 492).
                Field (LPC0, AnyAcc, NoLock, Preserve)
                {
                        ,   10, 
                    XPME,   1,                    // Bit 10 - BIOS_PCI_EXP_EN.
                            Offset (0x04),            // General PM Configuration 3 Register (ICH9R-316972.pdf / 13.8.1.3 - / page 492).
                    AG3E,   1,                    // Bit 0 Ð AFTERG3_EN.
                            Offset (0x50),            // Root Complex Base Address Register (ICH9R-316972.pdf / 13.1.35 / page 451).
                    RCBA,   32                    // Root Complex Base Address.
                }
                Device (IELK)
// rest of device IELK
So far 10 and more successful shutdowns in a row, and sleep and wake and restart after sleep all working... this is on 10.5.8

Last edited by walterav; 02-09-2010 at 12:59 AM.
Reply With Quote
  #10  
Old 11-24-2009, 08:44 AM
kjun5huo kjun5huo is offline
Puma
 
Join Date: Jul 2009
Posts: 16
Snoc//OSXRestart.kext works good. I try reboot after wake up from sleep,It works good.
Thank you for your Information.
Reply With Quote
Reply