Jump to content

Marvell Yukon 88E8039/Intel 3945 Wireless


EricLX
 Share

32 posts in this topic

Recommended Posts

I've tried almost everything to try to get the Marvell Yukon driver to work - I've tried at least five or six different things, even though I think that some of them that I hit were Tiger-[only]. Either way, I've tried a lot in replacing the kext, editing it, and fixing permissions with it and none of them worked.

 

Also, I've tried to find a driver for the Intel 3945, but I just realized that they don't have anything for this yet. Any workarounds available though?

 

Thanks to anyone that can help with either of these.

Link to comment
Share on other sites

Same network and wifi cards. I have tried everything they suggested so far with several different distros, but no luck. I can get it to sort of recognize my ethernet (it appears in Network in System Preferences), but ifconfig doesn't even see it. You could try Kalyway 10.5.2 and do the standard plist edit and see if you can get functionality out of it.

 

UPDATE: Hey, I got it to work. You want to use AppleYukon not AppleYukon2. Edit the plist in /System/Library/Extensions/IONetworkingFamily.kext/Contents/Plugins/AppleYukon.kext/Contents/info.plist to

 

 

<?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>AppleYukon</string>

<key>CFBundleGetInfoString</key>

<string>Apple Yukon Ethernet 1.0.11b2, Copyright 2006 Apple Computer Inc, and Marvell</string>

<key>CFBundleIdentifier</key>

<string>com.apple.iokit.AppleYukon</string>

<key>CFBundleInfoDictionaryVersion</key>

<string>6.0</string>

<key>CFBundleName</key>

<string>Marvell Technology Group Ltd. 88E8039 PCI-E Fast Ethernet Controller</string>

<key>CFBundlePackageType</key>

<string>KEXT</string>

<key>CFBundleShortVersionString</key>

<string>1.0.11</string>

<key>CFBundleSignature</key>

<string>yukonosx</string>

<key>CFBundleVersion</key>

<string>1.0.11b2</string>

<key>IOKitPersonalities</key>

<dict>

<key>Yukon-88E8039</key>

<dict>

<key>CFBundleIdentifier</key>

<string>com.apple.iokit.AppleYukon</string>

<key>DescriptorPollTimer</key>

<integer>250</integer>

<key>EED_Tickle_Off</key>

<integer>60000</integer>

<key>EED_Tickle_On</key>

<integer>2000</integer>

<key>EnableLowPwr</key>

<integer>1</integer>

<key>IOClass</key>

<string>yukonosx</string>

<key>IOPCIPrimaryMatch</key>

<string>0x435311AB</string>

<key>IOProviderClass</key>

<string>IOPCIDevice</string>

<key>IOUserClientClass</key>

<string>yukonosx_ioc_uc</string>

<key>InitialWaitForLinkUp</key>

<integer>60000</integer>

<key>InputQueueMax</key>

<integer>100</integer>

<key>LowPwrClockDivide</key>

<true/>

<key>LowPwrD1</key>

<true/>

<key>LowPwrPeerMax</key>

<integer>240</integer>

<key>LowPwrPeerMin</key>

<integer>60</integer>

<key>Model</key>

<string>Marvell Technology Group Ltd. 88E8039 PCI-E Fast Ethernet Controller</string>

<key>RxRingSize</key>

<integer>256</integer>

<key>TxRingSize</key>

<integer>256</integer>

<key>Vendor</key>

<string>Marvell</string>

<key>WaitForLinkUp</key>

<integer>6000</integer>

<key>WaitToCheckDelay</key>

<integer>5000</integer>

</dict>

</dict>

<key>OSBundleLibraries</key>

<dict>

<key>com.apple.iokit.IOACPIFamily</key>

<string>1.2.0</string>

<key>com.apple.iokit.IONetworkingFamily</key>

<string>1.5.1</string>

<key>com.apple.iokit.IOPCIFamily</key>

<string>2.1</string>

<key>com.apple.kpi.bsd</key>

<string>8.7.2</string>

<key>com.apple.kpi.iokit</key>

<string>8.7.2</string>

<key>com.apple.kpi.libkern</key>

<string>8.7.2</string>

<key>com.apple.kpi.mach</key>

<string>8.7.2</string>

</dict>

<key>OSBundleRequired</key>

<string>Network-Root</string>

</dict>

</plist>

 

 

Fix the preferences in the Disk Utility.

 

Then go to terminal and:

 

sudo -s

cd /System/Library/Extensions/IONetworkingFamily.kext/Contents/Plugins

chown -R root:wheel AppleYukon.kext

chmod -R 755 AppleYukon.kext

kextload AppleYukon.kext

 

A popup should appear telling you that a new Network interface was detected. It should work. You may want to repair the preferences in Disk Utility again. Some people also suggest deleting the Extensions.mkext file, you can do that too, it wont hurt.

 

Hope you can get it to work, best of luck.

Link to comment
Share on other sites

  • 2 weeks later...

Ok aparently I am doing something wrong. I type in all the Sudo commands. And when I get to changing ownership...I get this:

 

 

Password:

matt-palmers-mac-pro:desktop mattpalmer$ chown -R root:wheel AppleYukon.kext

chown: AppleYukon.kext/Contents/Info.plist: Operation not permitted

chown: AppleYukon.kext/Contents/MacOS/AppleYukon: Operation not permitted

chown: AppleYukon.kext/Contents/MacOS: Operation not permitted

chown: AppleYukon.kext/Contents/version.plist: Operation not permitted

chown: AppleYukon.kext/Contents: Operation not permitted

chown: AppleYukon.kext: Operation not permitted

 

What am I doing wrong? Any thoughts?

Link to comment
Share on other sites

After sudo -s you should type in your password and the enter the bash shell. You instead of "matt-palmers-mac-pro:desktop mattpalmer$" you should see "bash-3.2#." If that does not work, then you are typing in something wrong.

Link to comment
Share on other sites

thank you so much for giving making me surf the web on my hackintosh. It work out very well and very easy to understand even for a macosx noob like me. Thank you

 

Edit: After a reboot it didnt work anymore :) But then I did the "kextload" thing again and made it work again. What did I do wrong? I do not want to load that kext on every boot manually.

 

Edit2: After one more reboot it works just fine again. :D

Link to comment
Share on other sites

  • 2 weeks later...

first post....i'm having problems with my marv. yukon 8309... I think I've tried everything. Finally i got the message that my ethernet device had been recognized so i went to network preferences, but the the location area was empty and in network diagnostics ethernet its shown as failed.

 

I've rebooted and repaired permissions countless times.. Am i missing something???

 

Thanks

 

edit: I also took Memorial's advice of deleting extensions.mkext file and that didnt help...

Link to comment
Share on other sites

  • 2 weeks later...
  • 1 month later...
  • 2 weeks later...
  • 2 weeks later...
  • 2 weeks later...

i get the same error

I followed your steps but after i wrote kextload AppleYukon.kext . It replyed:

kextload: cannot resolve dependencies for kernel extension AppleYukon.kext error loading extension AppleYukon.kext

PLZ help unsure.gif

 

 

plz helpp

Link to comment
Share on other sites

  • 1 month later...

Memorial, i do not know anything about hackitosh, i am on Mac about one day only...

I havу notebook Samsung q70 with Marvell 88E8039 Ethernet controller..

I Have download your kext.. When do this:

sudo -s

cd /System/Library/Extensions/IONetworkingFamily.kext/Contents/Plugins

chown -R root:wheel AppleYukon.kext

chmod -R 755 AppleYukon.kext

kextload AppleYukon.kext

 

He write me: AppleYukon.kext loaded successfully... I rebooted and lan is not working anyway

Link to comment
Share on other sites

  • 1 month later...
  • 1 month later...
Be sure that you are loading my kext, not an original one that is in the IONetworking Family plug-ins.

 

 

I'm really sorry to be more another pain-in-the-ass Noob, but i've really been trying, I swear!

 

I loaded 4.8 on my Acer 3680 and its been working great apart from Ethernet, and Sound. right now im working on the ethernet.

 

So I've downloaded your .kext and have replaced it in the plugins folder. I then opened Terminal and have almost NO idea what to do. (i just figured out how to type in "sudo -s" and then enter my invisible password (that took a while, lol) but now your messages are going on about editing and chmods and other advanced terminal applications.

 

So All Im asking for is a simple Walk-me-through of the exact steps... spelled out so a complete noob can understand... if thats not toooo much to ask for, This would be GREATLY appreciated! Thanks

Link to comment
Share on other sites

  • 1 month later...

hello,

I have an Intel 3945abg. I've try with AppleYukon.kext and nothing... I've taken your kext, type sudo, chown, chmod, kextload and after this nothing else. No message for new network interface.

I've try to reboot with -s and to this again but nothing...

 

What can I do to have my intel?

 

thanks a lot

Link to comment
Share on other sites

hello,

I have an Intel 3945abg. I've try with AppleYukon.kext and nothing... I've taken your kext, type sudo, chown, chmod, kextload and after this nothing else. No message for new network interface.

I've try to reboot with -s and to this again but nothing...

 

What can I do to have my intel?

 

thanks a lot

 

This is for the ethernet driver, not the wireless.

 

For everyone else, make sure that you load the right driver and hit apply in the System Preferences Networking panel (otherwise the OS will forget that interface). If you can't hit apply, change something, change it back, then hit apply.

Link to comment
Share on other sites

  • 2 months later...

Thank you very much! It's work on Samsung NP-R60Y.

But! It's dont't work in first. Ethernet started after i add network location (it Kalyway 10.5.2 in default for me location don't creat)!

Web, hello!

Link to comment
Share on other sites

 Share

×
×
  • Create New...