patkitchen Posted September 13, 2006 Share Posted September 13, 2006 ok... I'm trying to install the AC 97 kext on my 10.4.6 (JaS) install. My sound card is an Intel AC97 card (ICH 4) DeviceID 8086 (heh, odd that intel chose that number) and the VendorID is 24c5....and so it begins.... Last login: Tue Sep 12 21:55:16 on console Welcome to Darwin! d141-104-158:~ patkitchen$ sudo -s Password: d141-104-158:~ root# cd /system/library/extensions/appleac97audio.kext/contents/plugins/appleac97audiointelich.kext/contents d141-104-158:/system/library/extensions/appleac97audio.kext/contents/plugins/appleac97audiointelich.kext/contents root# chmod 644 info.plist d141-104-158:/system/library/extensions/appleac97audio.kext/contents/plugins/appleac97audiointelich.kext/contents root# <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> <string>AppleAC97AudioIntelICH</string> <key>CFBundleGetInfoString</key> <string>1.0.0, Copyright Apple Computer, Inc. 2004</string> <key>CFBundleIdentifier</key> <string>com.apple.driver.AppleAC97AudioIntelICH</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> <string>Intel ICHx AC97 Audio Driver</string> <key>CFBundlePackageType</key> <string>KEXT</string> <key>CFBundleShortVersionString</key> <string>1.0.0</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> <string>1.0.0</string> <key>IOKitPersonalities</key> <dict> <key>ICH2 AC97 Audio</key> <dict> <key>CFBundleIdentifier</key> <string>com.apple.driver.AppleAC97AudioIntelICH</string> <key>ICH Type</key> <integer>2</integer> <key>IOClass</key> <string>AppleAC97AudioIntelICH</string> <key>IOPCIPrimaryMatch</key> <string>0x24458086 0x24358086</string> <key>IOProbeScore</key> <integer>10000</integer> <key>IOProviderClass</key> <string>IOPCIDevice</string> </dict> <key>ICH3 AC97 Audio</key> <dict> <key>CFBundleIdentifier</key> <string>com.apple.driver.AppleAC97AudioIntelICH</string> <key>ICH Type</key> <integer>3</integer> <key>IOClass</key> <string>AppleAC97AudioIntelICH</string> <key>IOPCIPrimaryMatch</key> <string>0x24858086</string> <key>IOProbeScore</key> <integer>10000</integer> <key>IOProviderClass</key> <string>IOPCIDevice</string> </dict> <key>ICH4 AC97 Audio 0x808624c5</key> <dict> <key>CFBundleIdentifier</key> <string>com.apple.driver.AppleAC97AudioIntelICH0x808624c5</string> <key>ICH Type</key> <integer>4</integer> <key>IOClass</key> <string>AppleAC97AudioIntelICH</string> <key>IOPCIPrimaryMatch</key> <string>0x24c58086</string> <key>IOProbeScore</key> <integer>10000</integer> <key>IOProviderClass</key> <string>IOPCIDevice</string> </dict> <key>ICH5 AC97 Audio</key> <dict> <key>CFBundleIdentifier</key> <string>com.apple.driver.AppleAC97AudioIntelICH</string> <key>ICH Type</key> <integer>5</integer> <key>IOClass</key> <string>AppleAC97AudioIntelICH</string> <key>IOPCIPrimaryMatch</key> <string>0x24d58086</string> <key>IOProbeScore</key> <integer>10000</integer> <key>IOProviderClass</key> <string>IOPCIDevice</string> </dict> <key>ICH6 AC97 Audio</key> <dict> <key>CFBundleIdentifier</key> <string>com.apple.driver.AppleAC97AudioIntelICH</string> <key>ICH Type</key> <integer>6</integer> <key>IOClass</key> <string>AppleAC97AudioIntelICH</string> <key>IOPCIPrimaryMatch</key> <string>0x266e8086</string> <key>IOProbeScore</key> <integer>10000</integer> <key>IOProviderClass</key> <string>IOPCIDevice</string> </dict> <key>NVIDIA AC97 Audio</key> <dict> <key>CFBundleIdentifier</key> <string>com.apple.driver.AppleAC97AudioIntelICH</string> <key>ICH Type</key> <integer>99</integer> <key>IOClass</key> <string>AppleAC97AudioIntelICH</string> <key>IOPCIPrimaryMatch</key> <string>0x00da10de 0x006a10de 0x01b110de</string> <key>IOProbeScore</key> <integer>1000</integer> <key>IOProviderClass</key> <string>IOPCIDevice</string> </dict> </dict> <key>OSBundleLibraries</key> <dict> <key>com.apple.driver.AppleAC97Audio</key> <string>1.0.0</string> <key>com.apple.iokit.IOPCIFamily</key> <string>1.1</string> </dict> </dict> </plist> ok... i'm pretty sure my problem lies within this file above. I think i made some really stupid n00b error.. please let me know.. thanks Link to comment https://www.insanelymac.com/forum/topic/27506-my-ac97-install-nightmare/ Share on other sites More sharing options...
Rammjet Posted September 13, 2006 Share Posted September 13, 2006 My sound card is an Intel AC97 card (ICH 4) DeviceID 8086 (heh, odd that intel chose that number) and the VendorID is 24c5 <key>ICH4 AC97 Audio 0x808624c5</key> <dict> <key>CFBundleIdentifier</key> <string>com.apple.driver.AppleAC97AudioIntelICH0x808624c5</string> <key>ICH Type</key> <integer>4</integer> <key>IOClass</key> <string>AppleAC97AudioIntelICH</string> <key>IOPCIPrimaryMatch</key> <string>0x24c58086</string> <key>IOProbeScore</key> <integer>10000</integer> <key>IOProviderClass</key> <string>IOPCIDevice</string> </dict> 8086 is the Vendor ID and 24c5 is the Device ID. The things I marked in bold shouldn't be there. Only the red one should be there. Link to comment https://www.insanelymac.com/forum/topic/27506-my-ac97-install-nightmare/#findComment-187472 Share on other sites More sharing options...
patkitchen Posted September 13, 2006 Author Share Posted September 13, 2006 thank you very much for the quick responce. i'll edit that and post the results! Link to comment https://www.insanelymac.com/forum/topic/27506-my-ac97-install-nightmare/#findComment-187483 Share on other sites More sharing options...
patkitchen Posted September 13, 2006 Author Share Posted September 13, 2006 no luck !!!!!!!! Link to comment https://www.insanelymac.com/forum/topic/27506-my-ac97-install-nightmare/#findComment-187494 Share on other sites More sharing options...
Recommended Posts