diff --git a/CHANGELOG.md b/CHANGELOG.md index 24bbe016a..d2ecedda7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # OpenCore Legacy Patcher changelog ## 0.3.2 +- Implement spoofless support (ie. no SMBIOS patching) + - Requires macOS 11.3 or newer, for 11.2.3 and older use Minimal or higher spoofing + - See additional notes before updating: [VMM usage notes](https://github.com/dortania/OpenCore-Legacy-Patcher/issues/543#issuecomment-953441283) ## 0.3.1 - Increment Binaries: diff --git a/resources/cli_menu.py b/resources/cli_menu.py index f39a8891c..8677d1cfa 100644 --- a/resources/cli_menu.py +++ b/resources/cli_menu.py @@ -196,7 +196,7 @@ Q. Return to previous menu print( """SecureBootModel is used to ensure best firmware security, however to patch the root volume this must be disabled. -Only disable is absolutely necessary. SIP value = 0xFEF +Only recommended to enable for users with T2 SMBIOS spoofs. Valid options: diff --git a/resources/validation.py b/resources/validation.py index dd5c647ae..3130cb028 100644 --- a/resources/validation.py +++ b/resources/validation.py @@ -70,5 +70,6 @@ def validate(settings): settings.disable_tb = True settings.force_surplus = True settings.software_demux = True + settings.serial_settings = "Minimal" build_prebuilt() build_dumps()