As you may know, Apple removed support for various system kexts and frameworks required by Broadcom WiFi cards from macOS Sequoia. Although Apple never shipped any systems with Intel WiFi/BT cards, AirportItlwm.kext
also requires these system kexts and frameworks to function properly. So in macOS Sequoia, users with Intel WiFi/BT cards had to resort to the Itlwm.kext
instead.
Since Itlwm.kext
injects the WiFi card as LAN adapter into macOS, this has some side-effects. For example, the Airport-Utility which lets you connect to WiFi hotspot can no longer be used – a separate app (Heliport
) has to be used to join WiFi APs. Another issue is that FindMyMac also requires WiFi.
Luckily for us, we can utilize OpenCore Legacy patcher to make use of AirportItlwm
in Sequoia again!
- Inject
IOName
of a BRCM 4360 Broadcom card viaDeviceProperties
to trigger "Modern WiFi" patches in OCLP - Inject the required kexts for re-enabling legacy WiFi cards
- Apply root patches
- Reboot to macOS Sequoia, voila,
AirportItlwm.kext
working again
We need to prepare the config.plist
and EFI folder content to make AirportItlwm.kext
work again! You can either follow the instructions below, or copy the settings from this plist.
In your config.plist
, create an entry for a Broadcom BCM4360 device in DeviceProperties
:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>DeviceProperties</key>
<dict>
<key>Add</key>
<dict>
<key>PciRoot(0x0)/Pci(0x1C,0x1)/Pci(0x0,0x0)</key>
<dict>
<key>IOName</key>
<string>pci14e4,43a0</string>
</dict>
</dict>
</dict>
</dict>
</plist>
- Get the correct PCI device path for your Intel WiFi card.
- You can do this with Hackintool. Just find the entry for the Wireless Network Controler, right-click and select "Copy Device Path":
- Adjust the PCI path to match your system:
Under Kernel/Block
, add the following rule:
<dict>
<key>Arch</key>
<string>x86_64</string>
<key>Comment</key>
<string>Allow IOSkywalk Downgrade</string>
<key>Enabled</key>
<true/>
<key>Identifier</key>
<string>com.apple.iokit.IOSkywalkFamily</string>
<key>MaxKernel</key>
<string></string>
<key>MinKernel</key>
<string>24.0.0</string>
<key>Strategy</key>
<string>Exclude</string>
</dict>
- Disable
Itlwm.kext
, if present! - Add the following Kexts from the OCLP repo to
EFI/OC/Kexts
and yourconfig.plist
:AMFIPasss.kext
IOSkywalk.kext
IO8021FamilyLegacy.kext
(contains pluginAirportBrcmNIC.kext
which you can disable since it is for Broadcom WiFi cards)AirportItlwm.kext
(inject the one for macOS Ventura! I have renamed it toAirportItlwm_Sequoia.kext
since I also have macOS Sonoma installed and it requires a different variant of the kext).⚠️ Make sure it is injected afterIOSkywalk
andIO8021FamilyLegacy
kexts!
- Adjust
MinKernel
andMaxKernel
settings as shown in the Screenshot:
Under Misc
, change SecureBootModel
to Disabled
- Change
csr-active-config
to03080000
(resp.030A0000
if you are using an NVIDIA GPU) - Enable
-lilubetaall
boot.arg if WiFi/BT is not working in macOS Sequoia - If Bluetooth stops working after root patching, add the following entries to the NVRAM section:
<key>7C436110-AB2A-4BBB-A880-FE41995C9F82</key>
<dict>
<key>bluetoothExternalDongleFailed</key>
<data>AA==</data>
<key>bluetoothInternalControllerInfo</key>
<data>AAAAAAAAAAAAAAAAAAA=</data>
<key>boot-args</key>
<string>-lilubetaall</string>
<key>csr-active-config</key>
<data>AwgAAA==</data>
</dict>
- Save your
config.plist
- Since you won't have internet Access in macOS Sequoia, download the latest release of OCLP before rebooting into macOS
- Now reboot into macOS Sequoia
- Run OCLP
- Click on "Apply Root Patch" button
- "Networking: Modern WiFi" should be available:
- Click "Start Root Patching"
- It will install the necessary Frameworks required for
AirportItlwm
to work:
- Reboot the system
- Perform an NVRAM reset
- Boot into macOS Sequoia
- You should now be able to use the Airport-Utility in macOS Sequoia again, to connect to WiFi APs
Important
Once root patches are applied, the security seal of the volume will be broken. And once it is broken, the complete macOS version will be downloaded every time an OS update is available. The workaround would be to revert root patches before installing updates – but then you won't have WiFi (unless you enable itlwm
beforehand).
- lifeknife10A who came up with this workaround
- sughero, for additional info about the order of the kexts
- stefanalmare for pointing me to this solution