Skip to content

Commit 85fba4b

Browse files
committed
Fix Check Bugs
1 parent 997c0b3 commit 85fba4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

oclp_r/sys_patch/patchsets/hardware/misc/apfs_aligned.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ def present(self) -> bool:
3030
"""
3131
AppleHDA was outright removed in macOS 26, so this patch set is always present if OS requires it
3232
"""
33-
return True
33+
return self._constants.allow_apfs_aligned_patch
3434

3535
def requires_kernel_debug_kit(self) -> bool:
3636
"""
3737
Apple no longer provides standalone kexts in the base OS
3838
"""
39-
return self._constants.allow_apfs_aligned_patch
39+
return False
4040
def native_os(self) -> bool:
4141
"""
4242
- Everything before macOS Tahoe 26 is considered native

0 commit comments

Comments
 (0)