From b6bb0e4af6bf4b3ae079291717143a34e6dd2232 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Mon, 28 Apr 2025 16:34:50 +0700 Subject: [PATCH] Correct AirportItlwm version for macOS Sonoma with OCLP patch --- Scripts/kext_maestro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/kext_maestro.py b/Scripts/kext_maestro.py index b8e1edc..a910efe 100644 --- a/Scripts/kext_maestro.py +++ b/Scripts/kext_maestro.py @@ -333,7 +333,7 @@ class KextMaestro: for kext_path, type in kext_paths: if "AirportItlwm" == kext.name: version = macos_version[:2] - if self.utils.parse_darwin_version("24.0.0") <= self.utils.parse_darwin_version(macos_version): + if all((self.kexts[kext_data.kext_index_by_name.get("IOSkywalkFamily")].checked, self.kexts[kext_data.kext_index_by_name.get("IO80211FamilyLegacy")].checked)) or self.utils.parse_darwin_version("24.0.0") <= self.utils.parse_darwin_version(macos_version): version = "22" elif self.utils.parse_darwin_version("23.4.0") <= self.utils.parse_darwin_version(macos_version): version = "23.4"