Skip to content

Commit 8cb39c5

Browse files
committed
disable some patches on tahoe
1 parent 1673320 commit 8cb39c5

22 files changed

+22
-22
lines changed

oclp_r/sys_patch/patchsets/hardware/graphics/amd_legacy_gcn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def native_os(self) -> bool:
4646
"""
4747
Dropped support with macOS 13, Ventura
4848
"""
49-
return self._xnu_major < os_data.ventura.value
49+
return self._xnu_major < os_data.ventura.value or self._xnu_major >= os_data.tahoe.value
5050

5151

5252
def hardware_variant(self) -> HardwareVariant:

oclp_r/sys_patch/patchsets/hardware/graphics/amd_navi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def native_os(self) -> bool:
4444
"""
4545
Dropped support with macOS 13, Ventura
4646
"""
47-
return self._xnu_major < os_data.ventura.value
47+
return self._xnu_major < os_data.ventura.value or self._xnu_major >= os_data.tahoe.value
4848

4949

5050
def hardware_variant(self) -> HardwareVariant:

oclp_r/sys_patch/patchsets/hardware/graphics/amd_polaris.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def native_os(self) -> bool:
4646
"""
4747
Dropped support with macOS 13, Ventura
4848
"""
49-
return self._xnu_major < os_data.ventura.value
49+
return self._xnu_major < os_data.ventura.value or self._xnu_major >= os_data.tahoe.value
5050

5151

5252
def hardware_variant(self) -> HardwareVariant:

oclp_r/sys_patch/patchsets/hardware/graphics/amd_terascale_1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def native_os(self) -> bool:
4444
"""
4545
Dropped support with macOS 10.14, Mojave
4646
"""
47-
return self._xnu_major < os_data.mojave.value
47+
return self._xnu_major < os_data.mojave.value or self._xnu_major >= os_data.tahoe.value
4848

4949

5050
def hardware_variant(self) -> HardwareVariant:

oclp_r/sys_patch/patchsets/hardware/graphics/amd_terascale_2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def native_os(self) -> bool:
4545
"""
4646
Dropped support with macOS 10.14, Mojave
4747
"""
48-
return self._xnu_major < os_data.mojave.value
48+
return self._xnu_major < os_data.mojave.value or self._xnu_major >= os_data.tahoe.value
4949

5050

5151
def hardware_variant(self) -> HardwareVariant:

oclp_r/sys_patch/patchsets/hardware/graphics/amd_vega.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def native_os(self) -> bool:
4444
"""
4545
Dropped support with macOS 13, Ventura
4646
"""
47-
return self._xnu_major < os_data.ventura.value
47+
return self._xnu_major < os_data.ventura.value or self._xnu_major >= os_data.tahoe.value
4848

4949

5050
def hardware_variant(self) -> HardwareVariant:

oclp_r/sys_patch/patchsets/hardware/graphics/intel_broadwell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def native_os(self) -> bool:
5656
"""
5757
Dropped support with macOS 13, Ventura
5858
"""
59-
return self._xnu_major < os_data.ventura.value
59+
return self._xnu_major < os_data.ventura.value or self._xnu_major >= os_data.tahoe.value
6060

6161

6262
def _model_specific_patches(self) -> dict:

oclp_r/sys_patch/patchsets/hardware/graphics/intel_haswell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def native_os(self) -> bool:
4444
"""
4545
Dropped support with macOS 13, Ventura
4646
"""
47-
return self._xnu_major < os_data.ventura.value
47+
return self._xnu_major < os_data.ventura.value or self._xnu_major >= os_data.tahoe.value
4848

4949

5050
def hardware_variant(self) -> HardwareVariant:

oclp_r/sys_patch/patchsets/hardware/graphics/intel_iron_lake.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def native_os(self) -> bool:
4343
"""
4444
Dropped support with macOS 10.14, Mojave
4545
"""
46-
return self._xnu_major < os_data.mojave.value
46+
return self._xnu_major < os_data.mojave.value or self._xnu_major >= os_data.tahoe.value
4747

4848

4949
def hardware_variant(self) -> HardwareVariant:

oclp_r/sys_patch/patchsets/hardware/graphics/intel_ivy_bridge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def native_os(self) -> bool:
4646
"""
4747
Dropped support with macOS 12, Monterey
4848
"""
49-
return self._xnu_major < os_data.monterey.value
49+
return self._xnu_major < os_data.monterey.value or self._xnu_major >= os_data.tahoe.value
5050

5151

5252
def hardware_variant(self) -> HardwareVariant:

0 commit comments

Comments
 (0)