Skip to content

Commit

Permalink
kern_start.cpp: Add Sequoia support
Browse files Browse the repository at this point in the history
  • Loading branch information
khronokernel committed Jun 27, 2024
1 parent 2ad3542 commit 7b3a5f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
CryptexFixup Changelog
======================
#### v1.0.3
- Added constants for macOS 15 support

#### v1.0.2
- Added constants for macOS 14 support

Expand Down
4 changes: 2 additions & 2 deletions CryptexFixup/kern_start.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ static void pluginStart() {
SYSLOG(MODULE_SHORT, "failed to route cs validation pages");
});
}

// Kernel Space Patcher (APFS.kext)
if (getKernelVersion() >= KernelVersion::Ventura) {
if (checkKernelArgument("-crypt_allow_hash_validation")) {
Expand Down Expand Up @@ -148,6 +148,6 @@ PluginConfiguration ADDPR(config) {
bootargBeta,
arrsize(bootargBeta),
KernelVersion::BigSur,
KernelVersion::Sonoma,
KernelVersion::Sequoia,
pluginStart
};

0 comments on commit 7b3a5f1

Please sign in to comment.