Skip to content

Commit dbd1ae1

Browse files
Added constants for macOS 26 support
1 parent 7a84cdd commit dbd1ae1

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
VirtualSMC Changelog
22
====================
3+
#### v1.3.7
4+
- Added constants for macOS 26 support
5+
36
#### v1.3.6
47
- Fixed error code when accessing missing key by index, solves PerfPowerServices freeze on 15.4+
58

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ English (Current)
2020
#### Boot arguments
2121
- Add `-vsmcdbg` to enable debug printing (available in DEBUG binaries).
2222
- Add `-vsmcoff` to switch off all the Lilu enhancements.
23-
- Add `-vsmcbeta` to enable Lilu enhancements on unsupported OS (15 and below are enabled by default).
23+
- Add `-vsmcbeta` to enable Lilu enhancements on unsupported OS (26 and below are enabled by default).
2424
- Add `-vsmcrpt` to report about missing SMC keys to the system log.
2525
- Add `-vsmccomp` to prefer existing hardware SMC implementation if found.
2626
- Add `vsmcgen=X` to force exposing X-gen SMC device (1 and 2 are supported).

VirtualSMC/kern_start.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ PluginConfiguration ADDPR(config) {
3333
bootargBeta,
3434
arrsize(bootargBeta),
3535
KernelVersion::MountainLion,
36-
KernelVersion::Sequoia,
36+
KernelVersion::Tahoe,
3737
[]() {
3838
auto prov = VirtualSMCProvider::getInstance();
3939
if (prov)

0 commit comments

Comments
 (0)