Open chriswayg opened 4 years ago
Hackintool v2.9.3 installs AirPortAtheros40.kext into /L/E/ which is deprecated. The log shows:
cp -R /Applications/Hackintool.app/Contents/Resources/Kexts/AirPortAtheros40.kext /Library/Extensions
Please update the tool to install kexts into the recommended locations such as OC/Kexts or CLOVER/kexts/Other
OC/Kexts
CLOVER/kexts/Other
For AirPortAtheros40.kext to work IO80211Family.kext needs to be loaded. For example side by side, sequentially like this in OpenCore:
AirPortAtheros40.kext
IO80211Family.kext
<dict> <key>BundlePath</key> <string>IO80211Family.kext</string> <key>Enabled</key> <true/> <key>ExecutablePath</key> <string>Contents/MacOS/IO80211Family</string> <key>PlistPath</key> <string>Contents/Info.plist</string> </dict> <dict> <key>BundlePath</key> <string>AirPortAtheros40.kext</string> <key>Enabled</key> <true/> <key>ExecutablePath</key> <string>Contents/MacOS/AirPortAtheros40</string> <key>PlistPath</key> <string>Contents/Info.plist</string> </dict>
or nested in the Plugins directory, like this:
<dict> <key>BundlePath</key> <string>IO80211Family.kext</string> <key>Enabled</key> <true/> <key>ExecutablePath</key> <string>Contents/MacOS/IO80211Family</string> <key>PlistPath</key> <string>Contents/Info.plist</string> </dict> <dict> <key>BundlePath</key> <string>IO80211Family.kext/Contents/PlugIns/AirPortAtheros40.kext</string> <key>Enabled</key> <true/> <key>ExecutablePath</key> <string>Contents/MacOS/AirPortAtheros40</string> <key>PlistPath</key> <string>Contents/Info.plist</string> </dict>
I have never tested AppleAHCIPortHotplug.kext, which Hackintool also installs into /L/E/, so I'm not sure what alternatives would be available.
AppleAHCIPortHotplug.kext
I've added a save dialog so you can select the location to install
Hackintool v2.9.3 installs AirPortAtheros40.kext into /L/E/ which is deprecated. The log shows:
cp -R /Applications/Hackintool.app/Contents/Resources/Kexts/AirPortAtheros40.kext /Library/Extensions
Please update the tool to install kexts into the recommended locations such as
OC/Kexts
orCLOVER/kexts/Other
For
AirPortAtheros40.kext
to workIO80211Family.kext
needs to be loaded. For example side by side, sequentially like this in OpenCore:or nested in the Plugins directory, like this: