Contribute
Register

Dell Inspiron 7347 Audio and MaciASL problem

Status
Not open for further replies.
still no sound. sorry I actually didn't want to do last reply until I had one more reboot and another dump attached so here we go
 

Attachments

  • debug_32018.zip
    6.2 MB · Views: 49
still no sound. sorry I actually didn't want to do last reply until I had one more reboot and another dump attached so here we go
remove
HDAEnabler.kext

why is AppleHDA.kext in /Library/Extensions? you should only have the system version in /System/Library/Extensions

config.plist:

Code:
<key>Audio</key>
        <dict>
            <key>Inject</key>
            <string>2</string>
        </dict>

should be:
Code:
<key>Audio</key>
        <dict>
            <key>Inject</key>
            <string>No</string>
        </dict>
if you are using layout ID 2 then it should be in here (replace the 3 or trial and error different numbers from
https://github.com/acidanthera/AppleALC/wiki/Supported-codecs ):

Code:
<key>PciRoot(0)/Pci(0x03,0)</key>
            <dict>
                <key>hda-gfx</key>
                <string>onboard-1</string>
                <key>layout-id</key>
                <integer>3</integer>
                <key>no-controller-patch</key>
                <integer>1</integer>
            </dict>
            <key>PciRoot(0)/Pci(0x1b,0)</key>
            <dict>
                <key>PinConfigurations</key>
                <data>
                </data>
                <key>layout-id</key>
                <integer>3</integer>
            </dict>

also your config.plist is corrupted:

Code:
<key>KextsToPatch</key>
    <array><dict>
                <key>Comment</key>
                <string>Prevent Apple I2C kexts from attaching to I2C controllers, credit CoolStar</string>
                <key>Name</key>
                <string>com.apple.driver.AppleIntelLpssI2C</string>
                <key>Find</key>
                <data>SU9LaXQ=</data>
                <key>Replace</key>
                <data>SU9LaXM=</data>
                <key>InfoPlistPatch</key>
                <true/>
            </dict>
            <dict>
                <key>Comment</key>
                <string>Prevent Apple I2C kexts from attaching to I2C controllers, credit CoolStar</string>
                <key>Name</key>
                <string>com.apple.driver.AppleIntelLpssI2CController</string>
                <key>Find</key>
                <data>SU9LaXQ=</data>
                <key>Replace</key>
                <data>SU9LaXM=</data>
                <key>InfoPlistPatch</key>
                <true/>
            </dict>
 
LikeQuote Reply  
Prev
1
2    </array>    <key>AppleRTC</key>
 
I deleted AppleHDA.kext and HDAEnabler.kext from Extensions. Had to rerun macOS installer. Edited the config.plist:
I copied a little too much from your post so I removed that from the KextsToPatch AddOn. Not sure about the array so I also tried to remove this. I tried every ID from the given link but no luck. 28 was the only one I wasn't able to boot up btw.
 

Attachments

  • debug_25880.zip
    6.3 MB · Views: 42
  • config.plist
    13.3 KB · Views: 49
I deleted AppleHDA.kext and HDAEnabler.kext from Extensions. Had to rerun macOS installer. Edited the config.plist:
I copied a little too much from your post so I removed that from the KextsToPatch AddOn. Not sure about the array so I also tried to remove this. I tried every ID from the given link but no luck. 28 was the only one I wasn't able to boot up btw.
needs to be in an array

check the guide for differences:
 
Had boot issues again so I decided to do some things again from scratch. I picked a fresh copy of hd4400 config.plisdt from rehabman and did all steps again.

1. In RehabMan config.plist the following is set to 0 instead of no:

Code:
<key>Audio</key>
        <dict>
            <key>Inject</key>
            <string>2</string>
        </dict>

so I leave it to 0 or change to no?

2. the entries for KextsToPatch have to be like <array> <dict>...</dict> ...<dict> ... </dict> </array>?

3. I really think I have old clover. i ran installer on the drive where mojave is installed. is the efi partiotion now updated? version number when booting up shows v4586

4. currently I am reinstalling because of boot issues. after reinstall, do I have to rerun install of updated kexts into Library/Extensions?
 

Attachments

  • config.plist
    13.4 KB · Views: 48
updated clover to 4910 with configurator and now I have sound! tyvm for helping me out feartech!
 
Last edited:
Status
Not open for further replies.
Back
Top