From e6a3b00ef48da2477da7b7ca8ab4bba4839caae1 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Thu, 9 Jun 2022 14:50:28 -0600 Subject: [PATCH] build.py: Move Ventura logic to ventura-alpha branch --- CHANGELOG.md | 1 - resources/build.py | 9 --------- 2 files changed, 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a4f9d4f7..73b2c6d02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,7 +26,6 @@ - Users may still manually run from source for future builds - Binaries will no longer be provided on future release - Switch boot.efi model patch to iMac18,1 -- Resolve pre-Force Touch Trackpad support in Ventura ## 0.4.5 - Fix AutoPatcher.pkg download on releases diff --git a/resources/build.py b/resources/build.py index 911e39be7..f0bc531ef 100644 --- a/resources/build.py +++ b/resources/build.py @@ -765,15 +765,6 @@ class BuildOpenCore: # Add AMDGPUWakeHandler self.enable_kext("AMDGPUWakeHandler.kext", self.constants.gpu_wake_version, self.constants.gpu_wake_path) - # Pre-Force Touch trackpad support for macOS Ventura - if smbios_data.smbios_dictionary[self.model]["CPU Generation"] < cpu_data.cpu_data.skylake.value: - if self.model.startswith("MacBook"): - # These units got force touch early, so ignore them - if self.model not in ["MacBookPro11,4", "MacBookPro11,5", "MacBook8,1"]: - self.enable_kext("AppleUSBTopCase.kext", self.constants.topcase_version, self.constants.top_case_path) - self.enable_kext("AppleUSBMultitouch.kext", self.constants.multitouch_version, self.constants.multitouch_path) - - # Bluetooth Detection if not self.constants.custom_model and self.computer.bluetooth_chipset: if self.computer.bluetooth_chipset in ["BRCM2070 Hub", "BRCM2046 Hub"]: