Contribute
Register

The problem with sleep

Status
Not open for further replies.
Make sure you test sleep with no external devices connected.

I'm sure any external devices to the notebook is not connected


I do not understand, now tried under the same conditions being equal, a few times to go to sleep to see the logs - the laptop goes to sleep and wakes up when I press the power. :crazy::crazy:
The problem itself in general and showed - one time works fine, the second time - no



I'll try a few more times, and tomorrow I'll write about the result.

thank you for your help.
 
I'm sure any external devices to the notebook is not connected


I do not understand, now tried under the same conditions being equal, a few times to go to sleep to see the logs - the laptop goes to sleep and wakes up when I press the power. :crazy::crazy:
The problem itself in general and showed - one time works fine, the second time - no



I'll try a few more times, and tomorrow I'll write about the result.

thank you for your help.

Intermittent problems can be tricky to diagnose and fix.
 
Intermittent problems can be tricky to diagnose and fix.

I found what the problem was cyclical spillage immediately after leaving the laptop to sleep and the inability to turn off the PC. This patch plist to 9287

Code:
<dict>
<key>Comment</key>
<string>Support AR5B197</string>
<key>Find</key>
<string>pci168c,30</string>
<key>InfoPlistPatch</key>
<true/>
<key>Name</key>
<string>AirPortAtheros40</string>
<key>Replace</key>
<string>pci168c,2e</string>
</dict>

Also, this patch caused panic on boot since Clover 3142. Removed patch and everything will work out.
 
I found what the problem was cyclical spillage immediately after leaving the laptop to sleep and the inability to turn off the PC. This patch plist to 9287

Code:
<dict>
<key>Comment</key>
<string>Support AR5B197</string>
<key>Find</key>
<string>pci168c,30</string>
<key>InfoPlistPatch</key>
<true/>
<key>Name</key>
<string>AirPortAtheros40</string>
<key>Replace</key>
<string>pci168c,2e</string>
</dict>

Also, this patch caused panic on boot since Clover 3142. Removed patch and everything will work out.

That patch is unnecessary.

It's included in ProbookARPT for 168c 002e
Code:
<key>Atheros Wireless LAN PCI</key>
        <dict>
            <key>CFBundleIdentifier</key>
            <string>com.apple.driver.AirPort.Atheros40</string>
            <key>IOClass</key>
            <string>AirPort_AtherosNewma40</string>
            <key>IOMatchCategory</key>
            <string>IODefaultMatchCategory</string>
            <key>IONameMatch</key>
            <array>
                <string>pci168c,2e</string>
                <string>pci168c,2b</string>
                <string>pci168c,2d</string>
            </array>
            <key>IOProbeScore</key>
            <integer>600</integer>
            <key>IOProviderClass</key>
            <string>IOPCIDevice</string>
        </dict>
 
That patch is unnecessary.

It's included in ProbookARPT for 168c 002e
Code:
<key>Atheros Wireless LAN PCI</key>
        <dict>
            <key>CFBundleIdentifier</key>
            <string>com.apple.driver.AirPort.Atheros40</string>
            <key>IOClass</key>
            <string>AirPort_AtherosNewma40</string>
            <key>IOMatchCategory</key>
            <string>IODefaultMatchCategory</string>
            <key>IONameMatch</key>
            <array>
                <string>pci168c,2e</string>
                <string>pci168c,2b</string>
                <string>pci168c,2d</string>
            </array>
            <key>IOProbeScore</key>
            <integer>600</integer>
            <key>IOProviderClass</key>
            <string>IOPCIDevice</string>
        </dict>

Yes, thank you, already use :)
 
Status
Not open for further replies.
Back
Top