Hi all, this is my first post so I will share my experience with 88E8055 (sorry for digging up old thread).
There are 2 methods I have tried to make this to work.
Both involved editing the AppleYukon2.kext Info.plist
The first one being is to delete all the 88E8055 entry, then edit the 88E8053 entry (the immediate previous one) to make it looks like the 88E8055 one without IOPCISecondaryMatch entry (edit ALL the value including: first key, IOPCIPrimaryMatch, names) and then install a package PCCard.10.5.2.Beta2.pkg.zip which can be found in another thread (here
http://forum.insanelymac.com/index.php?sho...1036&st=500 ). The method is discussed here:
http://forum.insanelymac.com/index.php?showtopic=100755However, if you are like me who believes that the package which comes with the Kalyway Leopard should work, then this is the second method. This is also the method that this thread has been discussing about.
This involves getting the SubSys ID (sorry I can't provide it here as it appears that this ID is DIFFERENT for DIFFERENT SYSTEM). If you want to get this then you should either use XCode (explained in 1 post in this thread) or use another operating system (like Windows) to obtain it (via Hardware Information from the driver). Note it down somewhere. In my experience, this will be the IOPCISecondaryMatch ID. The IOPrimaryMatch ID is the same as default (should be 0x436311ab).
Now you can open up the Info.plist in AppleYukon2.kext by using sudo nano command:
Open Terminal and type:
sudo nano /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleYukon2.kext/Contents/Info.plist
type in password and it should open up something like a text document, only that you cannot use your mouse. press Ctrl + V (it stands for Page Down) until you locate the string that says:
<key>Yukon-88E8055</key>
just a bit under that you will notice these default value:
<key>IOPCIPrimaryMatch</key>
<string>0x436311ab</string>
<key>IOPCISecondaryMatch</key>
<string>0x00ba11ab</string>
Leave the 0x436311ab alone, it's the correct value we wanted. The thing that we have to edit is 0x00ba11ab which is incorrect because it does not match the ID of your device. As stated above, this varies for different machines. This should be the SubSys Code you found earlier and noted down. Change this value to 0xYYYYYYYY where YYYYYYYY is your SubSys ID (the entire ID). This should now look like this:
<key>IOPCIPrimaryMatch</key>
<string>0x436311ab</string>
<key>IOPCISecondaryMatch</key>
<string>0xYYYYYYYY</string>
Press Ctrl+O to save, then press enter when it asks you where to write it. Prest Ctrl+X to leave nano.
Now type sudo -s (you don't have to if you did earlier)
You will have to repair the permissions of the files to make it work. The method I used is fast and simple: you repair whatever you edited.
in sudo -s type:
chmod -R 755 /System/Library/Extensions/IONetworkingFamily.kext
chown -R root:wheel /System/Library/Extensions/IONetworkingFamily.kext
rm /System/Library/Extensions.mkext
kextcache -k /System/Library/Extensions
Now you are ready to reboot. Either type reboot or restart your system. Note that if you did not remove the /System/Library/Extensions.mkext you will have trouble starting up the system as it will stay on the Apple Logo screen without wheels for forever. See below for how to fix it.
After restarting the system, simply open Network in System Preferences and new Ethernet will be detected. If not, see below.
Here are some common problems that I have found with this method and attempt to fix it:
1. Forgot to remove /System/Library/Extensions.mkext and cannot boot in normal mode anymore: Apple Logo screen came up without wheel and would not move on.
How to fix: start in single mode by pressing F8 when booting and type -s while highlighting the MacOS boot partition. The system will start with a command line. Type:
sudo -s
mount /
rm /System/Library/Extensions.mkext
reboot
A side note if you don't type mount / before rm it won't let you do it because Extensions.mkext will be shown as a System read only file. mount / will let you mount the root, then allow you to remove and modify the System read only files.
2. You've tried what I said here, but it would not work.
Please check to make sure that you've got the plist file updated correctly in the correct directory. Also please check that all the permissions are updated. Permissions update are mandatory since without the correct Permisions the System will not be able to read the file. Everytime you edit the file and save it it will return a different permission file that the System refuse to access. Therefore repairing permissions are needed after you updated the Info.plist.
3. You tried everything and it would not work.
Please post here.
Thank you all. I just want to post this so that everyone who uses the search engine to search will be able to find a solution easily.
Enjoy ethernet!
Tags: Yukon Marvell 88E8055 IOPCISecondaryMatch SecondaryMatch