From b2fc20b8135e9ea522f7895cd762a4818f69cb36 Mon Sep 17 00:00:00 2001 From: stevezhengshiqi Date: Tue, 8 Oct 2024 13:48:36 -0400 Subject: [PATCH] OC: Enable FixupAppleEfiImages to support VMs and add Unload to support OC v1.0.2 * Docs: Update Changelogs * makefile: Minor update --- Changelog.md | 24 ++++++++++++++++++++++++ Docs/Changelog_CN.md | 24 ++++++++++++++++++++++++ OC/config_cml.plist | 4 +++- OC/config_kbl.plist | 4 +++- makefile.sh | 2 +- 5 files changed, 55 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index b2f7d36e..5761d96e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,30 @@ **English** | [中文](Docs/Changelog_CN.md) +## [XiaoMi NoteBook Pro EFI v1.8.4](/~https://github.com/daliansky/XiaoMi-Pro-Hackintosh/releases/tag/v1.8.4) +## 2024-10-08 +Supported macOS Version: 10.15, 11, 12, 13, 14 +Intel Wi-Fi is NOT supported on macOS 15 (Sequoia). Try itlwm + HeliPort or Ventura kexts + OCLP (risky) +### Upgrade + - Update `OpenCore` v1.0.2 + - Update `Clover` r5160 + - Update `Lilu` v1.6.9 + - Update `VirtualSMC` v1.3.4 + - Update `AppleALC` v1.9.2 + - Update `WhateverGreen` v1.6.8 + - Update `HibernationFixup` v1.5.2 + - Update `RestrictEvents` v1.1.5 + - Update `VoodooInput` v1.1.6 + - Update `VoodooPS2` v2.3.6 + - Update `BrcmPatchRAM` v2.6.9 + - Update `IntelBluetoothFirmware` (up to [OpenIntelWireless/IntelBluetoothFirmware@01cc180](/~https://github.com/OpenIntelWireless/IntelBluetoothFirmware/commit/01cc1806d71f5cc64c464851b9f4811a3e7b4791)) + - Update `AirportItlwm` v2.4.0 (up to [OpenIntelWireless/itlwm@53c51c2](/~https://github.com/OpenIntelWireless/itlwm/commit/53c51c2cdd6e4b69beb91f310d74c53422b0f8bd)) + +### OC + - Enable `FixupAppleEfiImages` for VMs + - Update config to support `OpenCore` v1.0.2 + + ## [XiaoMi NoteBook Pro EFI v1.8.3](/~https://github.com/daliansky/XiaoMi-Pro-Hackintosh/releases/tag/v1.8.3) ## 2024-05-15 Supported macOS Version: 10.15, 11, 12, 13, 14 diff --git a/Docs/Changelog_CN.md b/Docs/Changelog_CN.md index 77edd5f8..5e790fe1 100644 --- a/Docs/Changelog_CN.md +++ b/Docs/Changelog_CN.md @@ -2,6 +2,30 @@ [English](../Changelog.md) | **中文** +## [XiaoMi NoteBook Pro EFI v1.8.4](/~https://github.com/daliansky/XiaoMi-Pro-Hackintosh/releases/tag/v1.8.4) +## 2024-10-08 +支持的 macOS 版本:10.15,11,12,13,14 +英特尔 Wi-Fi 不支持 macOS 15 (Sequoia)。可尝试 itlwm + HeliPort 或 Ventura kexts + OCLP(有风险) +### 更新 + - 更新 `OpenCore` v1.0.2 + - 更新 `Clover` r5160 + - 更新 `Lilu` v1.6.9 + - 更新 `VirtualSMC` v1.3.4 + - 更新 `AppleALC` v1.9.2 + - 更新 `WhateverGreen` v1.6.8 + - 更新 `HibernationFixup` v1.5.2 + - 更新 `RestrictEvents` v1.1.5 + - 更新 `VoodooInput` v1.1.6 + - 更新 `VoodooPS2` v2.3.6 + - 更新 `BrcmPatchRAM` v2.6.9 + - 更新 `IntelBluetoothFirmware`(更新至 [OpenIntelWireless/IntelBluetoothFirmware@01cc180](/~https://github.com/OpenIntelWireless/IntelBluetoothFirmware/commit/01cc1806d71f5cc64c464851b9f4811a3e7b4791)) + - 更新 `AirportItlwm` v2.4.0(更新至 [OpenIntelWireless/itlwm@53c51c2](/~https://github.com/OpenIntelWireless/itlwm/commit/53c51c2cdd6e4b69beb91f310d74c53422b0f8bd)) + +### OC + - 启用 `FixupAppleEfiImages` 以支持 VMs + - 更新 config 来支持 `OpenCore` v1.0.2 + + ## [XiaoMi NoteBook Pro EFI v1.8.3](/~https://github.com/daliansky/XiaoMi-Pro-Hackintosh/releases/tag/v1.8.3) ## 2024-05-15 支持的 macOS 版本:10.15,11,12,13,14 diff --git a/OC/config_cml.plist b/OC/config_cml.plist index f7c37c36..c50c2537 100644 --- a/OC/config_cml.plist +++ b/OC/config_cml.plist @@ -287,7 +287,7 @@ EnableWriteUnprotector FixupAppleEfiImages - + ForceBooterSignature ForceExitBootServices @@ -1628,6 +1628,8 @@ ReservedMemory + Unload + diff --git a/OC/config_kbl.plist b/OC/config_kbl.plist index 061e7ee7..ba30e290 100755 --- a/OC/config_kbl.plist +++ b/OC/config_kbl.plist @@ -304,7 +304,7 @@ EnableWriteUnprotector FixupAppleEfiImages - + ForceBooterSignature ForceExitBootServices @@ -1643,6 +1643,8 @@ ReservedMemory + Unload + diff --git a/makefile.sh b/makefile.sh index 98ec18a7..ece981a3 100755 --- a/makefile.sh +++ b/makefile.sh @@ -19,7 +19,7 @@ REPO_NAME_BRANCH="${REPO_NAME}-${REPO_BRANCH}" RETRY_MAX=5 # Release Message -RLMSG="**EFI upgrade instructions are given [here](/~https://github.com/daliansky/XiaoMi-Pro-Hackintosh#upgrade).
If System Settings does not show OEM updates, go to App Store and search Sonoma (or newer macOS).
If OEM update fails, set SecureBootModel to Disabled and perform the update. When the update completes, set SecureBootModel back to Default.**" +RLMSG="**EFI upgrade instructions are given [here](/~https://github.com/daliansky/XiaoMi-Pro-Hackintosh#upgrade).
If System Settings does not show OEM updates, go to App Store and search Sonoma (or newer macOS).
If OEM update fails, make sure SecureBootModel is Disabled and/or reset NVRAM and perform the update.**" bl_input="" bl_list=( )