Contribute
Register

Random panics on boot

Status
Not open for further replies.
Hey!

Sadly, it got stuck again today, I still don't know what causes this. Image and PR files have been attached.
 

Attachments

  • IMG_20191107_153903.jpg
    5.6 MB · Views: 33
  • debug_5414.zip
    5.5 MB · Views: 66
Hey!

Sadly, it got stuck again today, I still don't know what causes this. Image and PR files have been attached.
as you have chosen to install your kexts to clover, you may want to remove this kext from s/l/e:
Code:
Kext with invalid signatured (-67062) allowed: <OSKext 0x7fa1a97b7f20 [0x7fff9bf228e0]> { URL = "file:///System/Library/Extensions/RealtekRTL81xx.kext/", ID = "com.lnx2mac.driver.RealtekRTL81xx" }
and maybe place it with your other kexts in clover

also try disabling this in config.plist:
Code:
<key>FixAirport</key>
                <true/>

also remove this as this (should) only be needed for installation:

Code:
<key>ForceKextsToLoad</key>
        <array>
            <string>\System\Library\Extensions\IONetworkingFamily.kext</string>
        </array>
 
@Feartech

Thank you so much, again! I did move that kext, disabled FixAirport (WiFi still works perfectly) and removed the ForceKextsToLoad entry.

Also, (because I enabled my touch screen today) I removed the whole USB-Inject business because with it the touch screen device wouldn't be discovered.

Now everything is fully functional and I'm going to wait for new panics, stuck boots or other problems.
Thanks for everything! :)

(Attached my PR files, just in case for other people who maybe own the same laptop model and struggle with this stuff aswell)
 

Attachments

  • debug_3643.zip
    5.6 MB · Views: 52
No booting issues so far, just audio didn't work for one boot, the next one it instantly worked again. Would be amazing if I could fix that...

Both PR files (working and dead) attached, hoping this comparison may help... I'm clueless with this.
 

Attachments

  • audio_dead.zip
    5.5 MB · Views: 58
  • audio_working.zip
    5.6 MB · Views: 56
No booting issues so far, just audio didn't work for one boot, the next one it instantly worked again. Would be amazing if I could fix that...

Both PR files (working and dead) attached, hoping this comparison may help... I'm clueless with this.
config.plist:

this:
Code:
<dict>
        <key>Audio</key>
        <dict>
            <key>AFGLowPowerState</key>
            <false/>
            <key>Inject</key>
            <integer>29</integer>
            <key>ResetHDA</key>
            <true/>
        </dict>

should be:

Code:
<dict>
        <key>Audio</key>
        <dict>
            <key>AFGLowPowerState</key>
            <false/>
            <key>Inject</key>
            <string>No</string>
            <key>ResetHDA</key>
            <true/>
        </dict>

also missing:
Code:
<key>PciRoot(0)/Pci(0x1f,3)</key>
            <dict>
                <key>layout-id</key>
                <integer>29</integer>
                <key>PinConfigurations</key>
                <data></data>
                <key>hda-gfx</key>
                <string>onboard-1</string>
                <key>no-controller-patch</key>
                <integer>1</integer>
            </dict>
see here where it should belong:

you may want to try different layouts to trial and error:

should also be removed:
Code:
<key>ig-platform-id</key>
        <string>0x3E9B0000</string>
 
@Feartech

Have I implemented something the wrong way? Audio is completely dead now :/. I could rollback at any given time, it's just that I'd like to resolve this.

Thank you for your extremely detailed answer! :) PR files attached.
 

Attachments

  • debug_8697.zip
    5.6 MB · Views: 73
@Feartech

Have I implemented something the wrong way? Audio is completely dead now :/. I could rollback at any given time, it's just that I'd like to resolve this.

Thank you for your extremely detailed answer! :) PR files attached.
your previous config.plist used layout id 29, your new one shows 23 trial and error those different numbers :)
 
@Feartech

Oh yeah, sure, I think my brain switched off for a second right there... :D
I tried all available layouts from the website but all yield the following result: Audio is detected but the speakers don't do ANYTHING when audio is played. I didn't even try the audio jack yet because those either did or didn't work together.

Any ideas? PR files attached.
 

Attachments

  • debug_9434.zip
    5.7 MB · Views: 51
@Feartech

Oh yeah, sure, I think my brain switched off for a second right there... :D
I tried all available layouts from the website but all yield the following result: Audio is detected but the speakers don't do ANYTHING when audio is played. I didn't even try the audio jack yet because those either did or didn't work together.

Any ideas? PR files attached.
try using hackintool to setup audio patches as something don't look correct in your ioreg, example when you search for HDEF, your alc-layout-id is "c" which doesn't seem correct

example, mine comes up with 03 00 00 00 (layout 3)

 
@Feartech

I'm sorry, I should've tested the jack... It seems to work fine on ID 29, but speakers are still dead. I'll look into the things you just told me about, thank you!

Attached my most recent PR files.

// Edit: alc-layout-id seems to look fine now :)
 

Attachments

  • debug_28091.zip
    5.7 MB · Views: 49
Status
Not open for further replies.
Back
Top