View Single Post
 
Old 08-07-2009, 10:43 PM
Epal Epal is offline
Cheetah
 
Join Date: Aug 2009
Posts: 9
i did the same trcik for a DLINK DGE 528T, adding 0x43001186 device in the plist of applertl8168 like in tiger and leopard.

Here's, its not working... did you something else ?


Quote:
Originally Posted by lancelotu View Post
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
Reply With Quote