Subscribe to our RSS news feed
AAPL 199.94 (-1.25)

2 Pages V  < 1 2  
Reply to this topic Start new topic
Marvell 88E8055 Leopard
*
  • Group: Members
  • Posts: 22
  • Joined: 1-March 08
  • Member No.: 193,965
Hey all!

I finally got mine to work! I installed Kalyway 10.5.1 on my sony vaio sz 650 and played around with everything people mentioned above.

I essentially used the code posted above but removed the Key and string for IOPCISecondaryMatch:
CODE
<key>Yukon-88E8055</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.iokit.AppleYukon2</string>
<key>EnableLowPwr</key>
<integer>1</integer>
<key>IOClass</key>
<string>yukon2osx</string>
<key>IOPCIPrimaryMatch</key>
<string>0x436311ab</string>
NOTE: (2 lines removed)
<key>IOProviderClass</key>
<string>IOPCIDevice</string>
<key>InitialWaitForLinkUp</key>
<string></string>
<key>MACNumber</key>
<integer>1</integer>
<key>Model</key>
<string>Yukon Gigabit Adapter 88E8055 Singleport Copper SA</string>
<key>NetworkNumber</key>
<integer>6000</integer>
<key>Vendor</key>
<string>Marvell</string>
</dict>


At first, I tried the IOPCISecondaryMatch and got the numbers from windows xp, but it didnt work. The PrimaryMatch was the same when I checked in XP so I left that as default. So I excluded the two lines, deleted extensions.kext, repaired permissions and rebooted and viola! it shows up in the ethernet settings in Preferences.

Some times it would not detect the cable, so when I booted up with darwin, i used the commands -v -f
-v to show the code execution and -f i believe is to load the drivers

Good luck to all!
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 1
  • Joined: 4-April 08
  • Member No.: 210,232
Thanks alot. It works!
QUOTE (vietboi821 @ Mar 3 2008, 10:10 AM) *
I essentially used the code posted above but removed the Key and string for IOPCISecondaryMatch:
<key>IOPCIPrimaryMatch</key>
<string>0x436311ab</string>
NOTE: (2 lines removed)
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 28
  • Joined: 3-May 08
  • Member No.: 225,423
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=100755

However, 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
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 6
  • Joined: 4-June 07
  • Member No.: 112,164
My ethernet is now working... thanks to Ferret-Simpson
My hackintosh is Kalyway 10.5.2 with vanilla kernel on Fujitsu T4125
This forum is great.... Thank you all
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 4
  • Joined: 27-April 08
  • From: Germany
  • Member No.: 222,064
lots of thx xD

is workin fine!

hope the intel 4965 wifi will be supported soon, need it for university :-D
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 9
  • Joined: 26-July 08
  • Member No.: 263,837
QUOTE (Sophitia @ May 4 2008, 07:20 PM) *
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=100755

However, 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


hi, sorry to say but seems that i have not AppleYukon2.kext in my system , when i use the command
sudo nano /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleYukon2.kext/Contents/Info.plist
an empty file appear .. maybe i'm doing something wrong , do you have an already made kext file or tell me what is wrong ? thank you
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 9
  • Joined: 17-January 09
  • Member No.: 358,436
Hi everybody,

I'm trying to fix my Marvell Yukon 88E8055 but I can't have success :
My IOPrimaryMatch is : 0x436311ab
Secondary : 0x903511ab

I use iAktos 10.5.5

When I use these settings, or when I delete the Secondary key and string, I have the same end :
After using kext helper b7, reboot, when i go into applications and run network system, nothing happens. I have to force quit.

May you help me please, i really need the internet to upgrade my version.
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 35
  • Joined: 15-January 08
  • Member No.: 173,256
works on a Fujitsu lifebook T4210 ! perfectly with your IOPCIMatch !

thnx a lot!
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 6
  • Joined: 27-March 09
  • Member No.: 400,964
Can anybody upload the edited kext file for 8055 to here please?
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 1
  • Joined: 20-April 09
  • Member No.: 414,501
This worked perfect!! Thank You much.

88E8055 working on Sony Vaio VGN-FW290



QUOTE (Sophitia @ May 4 2008, 10:20 AM) *
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=100755

However, 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
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 1
  • Joined: 31-August 06
  • Member No.: 53,694
QUOTE (Sophitia @ May 5 2008, 02:20 AM) *
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=100755

However, 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



works perfectly on two of my fujitsu s111, thanks a million for this guide!
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 3
  • Joined: 30-September 09
  • Member No.: 499,827
QUOTE (Ferret-Simpson @ Nov 5 2007, 08:01 PM) *
If I were you, I'd switch to Tiger for the time being.

At the moment, Tiger supports the WACOM, Network and Audio with the hacks in the "T421X" (Use the search) thread. On Leopard, only the network is functional for the time being. I'm working on Leopard support, but it's not ready yet. If you still need to use Leopard, just follow the instructions I gave in the post above yours.

Edit the plist file in IONetworkingFamily/Plugins/AppleYukon2 (More details in T421X thread)

Insert the following code in between the dictionaries for 88e8053 and 88e8055-B0

CODE
<key>Yukon-88E8055</key>
             <dict>
                 <key>CFBundleIdentifier</key>
                 <string>com.apple.iokit.AppleYukon2</string>
                 <key>EnableLowPwr</key>
                 <integer>1</integer>
                 <key>IOClass</key>
                 <string>yukon2osx</string>
                 <key>IOPCIPrimaryMatch</key>
                 <string>0x436311ab</string>
                 <key>IOPCISecondaryMatch</key>
                 <string>0x139a10cf</string>
                 <key>IOProviderClass</key>
                 <string>IOPCIDevice</string>
                 <key>InitialWaitForLinkUp</key>
                 <string></string>
                 <key>MACNumber</key>
                 <integer>1</integer>
                 <key>Model</key>
                 <string>Yukon Gigabit Adapter 88E8055 Singleport Copper SA</string>
                 <key>NetworkNumber</key>
                 <integer>6000</integer>
                 <key>Vendor</key>
                 <string>Marvell</string>
             </dict>


Kay?



Hello!
I'm new to Mac OS X on My PC.
I am so confused with my ethernet in Os X Leopard
Its always Showing "The cable for ethernet is not plugged in".
My Ethernet adapter is Marvell yukon 80E8055.
Please any one tell me What is the problem and how to solve this.
I can not work without internet. please.
Attached File(s)
Attached File  Picture_1.png ( 1.7MB ) Number of downloads: 13
 
PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 3
  • Joined: 30-September 09
  • Member No.: 499,827
QUOTE (Ferret-Simpson @ Nov 3 2007, 02:44 PM) *
Not working on default configuration of IOnet.kext, despite dupposed inbuilt support. Yukon and Yukon2 have been merged. Old plist hack to Yukon2 88E8053 Failed. Will look in source and report back.

Thanks in Advance!


PM Profile Card
Go to the top of the page
+ Quote Post
*
  • Group: Members
  • Posts: 1
  • Joined: 8-November 09
  • Member No.: 522,444
QUOTE (infected_dreams @ Jan 25 2008, 09:04 AM) *
found a workaround it , and now i can connect through my leopard using my marvel yukon 8055! anybody intersted, i can send the .kext files or explain the way i did it...!!! pm me if you want more info! in a rush and thats why i aint posting the details right now, maybe later......!!!


Would you be able to send me this file??
PM Profile Card
Go to the top of the page
+ Quote Post
2 Pages V  < 1 2
Reply to this topic Start new topic

1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

RSS Lo-Fi Version Time is now: 22nd November 2009 - 10:18 AM