Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add constants for macOS 15/Sequoia support #10

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
NVMeFix Changelog
=================
#### v1.1.2
- Added constants for macOS 15 support

#### v1.1.1
- Added constants for macOS 14 support
- Fixed macOS 14 compatibility
Expand Down
2 changes: 1 addition & 1 deletion NVMeFix/NVMeFix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ PluginConfiguration ADDPR(config) {
nullptr,
0,
KernelVersion::Mojave,
KernelVersion::Sonoma,
KernelVersion::Sequoia,
[]() {
NVMeFixPlugin::globalPlugin().init();
}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ NVMeFix

[![Build Status](https://github.com/acidanthera/NVMeFix/workflows/CI/badge.svg?branch=master)](https://github.com/acidanthera/NVMeFix/actions) [![Scan Status](https://scan.coverity.com/projects/22192/badge.svg?flat=1)](https://scan.coverity.com/projects/22192)

***NOTE***: NVMeFix supports up to macOS Sonoma (14), but some features might not be available on newer versions as of now, like the timeout panic fix.
***NOTE***: NVMeFix supports up to macOS Sequoia (15), some features might not be available on newer versions as of now, like the timeout panic fix.

NVMeFix is a set of patches for the Apple NVMe storage driver, IONVMeFamily.
Its goal is to improve compatibility with non-Apple SSDs. It may be used both on Apple and non-Apple
Expand All @@ -20,7 +20,7 @@ submitted to our [bugtracker](https://github.com/acidanthera/bugtracker).

Unfortunately, some issues cannot be fixed purely by a kernel-side driver. For example, MacBookPro
11,1 EFI includes an old version of NVMHCI DXE driver that causes a hang when resuming from
hibernaton with full disk encryption on.
hibernation with full disk encryption on.

Installation
------------
Expand Down