View Single Post
 
Old 07-16-2009, 09:11 PM
lancelotu lancelotu is offline
Jaguar
 
Join Date: Jul 2009
Posts: 58
Quote:
Originally Posted by The Edge3000 View Post
Are you using the recompiled 64 bit VoodooHDA? http://www.infinitemac.com/attachmen...2&d=1247501812 I have a P5KC and this kext works in -x64. Also, could you explain how you got the proper hardware ID for the Info.plist in IONetworking?
I am not using -x64 because I have a lot of Panics

For working Marvell 88E8056 Ethernet you have to edit the Info.plist inside :

IONetworkingFamily.kext/Contents/PlugIns/AppleYukon2.kext/Contents/

sudo -s

Your password, then
nano /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleYukon2.kext/Contents/Info.plist

find this string : [Tip: if you use nano it's easier to find this string if you press ctrl+w (whereis option) and type "53" then press Enter.]

Code:
<string>Marvell</string>
                </dict>
                <key>Yukon-88E8053</key>
                <dict>
                        <key>CFBundleIdentifier</key>

and replace 3 with 6

then find :

Code:
<key>IOPCIPrimaryMatch</key>
                        <string>0x436211ab</string>
and replace 0x436211ab with 0x436411ab (2 with 4)


then finally replace the "3" from

Code:
<key>Model</key>
                        <string>Yukon Gigabit Adapter 88E8053 Singleport Copper$</string>

with "6" so it will look like this:

Code:
<key>Model</key>
                        <string>Yukon Gigabit Adapter 88E8056 Singleport Copper$</string>

save the file, chown and chmod the extensions:

Code:
chown -R root:wheel /System/Library/Extensions/*
chmod -R 755 /System/Library/Extensions/*

and reboot

Please report if working in -x64

Regards

Last edited by lancelotu; 07-17-2009 at 08:13 AM.
Reply With Quote