mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-24 12:00:15 +10:00
Add note for S1X/S3X changes and clarify if statement
This commit is contained in:
@@ -150,9 +150,10 @@ class BuildStorage:
|
|||||||
|
|
||||||
# Restore S1X/S3X NVMe support removed in 14.0 Beta 2
|
# Restore S1X/S3X NVMe support removed in 14.0 Beta 2
|
||||||
# Apple's usage of the S1X and S3X is quite sporadic and inconsistent, so we'll try a catch all for units with NVMe drives
|
# Apple's usage of the S1X and S3X is quite sporadic and inconsistent, so we'll try a catch all for units with NVMe drives
|
||||||
|
# Additionally expanded to cover all Mac models with the 12+16 pin SSD layout, for older machines with newer drives
|
||||||
if self.constants.custom_model and self.model in smbios_data.smbios_dictionary:
|
if self.constants.custom_model and self.model in smbios_data.smbios_dictionary:
|
||||||
if "CPU Generation" in smbios_data.smbios_dictionary[self.model]:
|
if "CPU Generation" in smbios_data.smbios_dictionary[self.model]:
|
||||||
if cpu_data.CPUGen.haswell <= smbios_data.smbios_dictionary[self.model]["CPU Generation"] <= cpu_data.CPUGen.kaby_lake or self.model in [ "MacPro6,1" ]:
|
if (cpu_data.CPUGen.haswell <= smbios_data.smbios_dictionary[self.model]["CPU Generation"] <= cpu_data.CPUGen.kaby_lake) or self.model in [ "MacPro6,1" ]:
|
||||||
support.BuildSupport(self.model, self.constants, self.config).enable_kext("IOS3XeFamily.kext", self.constants.s3x_nvme_version, self.constants.s3x_nvme_path)
|
support.BuildSupport(self.model, self.constants, self.config).enable_kext("IOS3XeFamily.kext", self.constants.s3x_nvme_version, self.constants.s3x_nvme_path)
|
||||||
|
|
||||||
# Apple RAID Card check
|
# Apple RAID Card check
|
||||||
|
|||||||
Reference in New Issue
Block a user