Skip to content

Commit

Permalink
OC: Enable FixupAppleEfiImages to support VMs and add Unload to suppo…
Browse files Browse the repository at this point in the history
…rt OC v1.0.2

* Docs: Update Changelogs
* makefile: Minor update
  • Loading branch information
stevezhengshiqi committed Oct 8, 2024
1 parent 0df53d7 commit b2fc20b
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 3 deletions.
24 changes: 24 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
24 changes: 24 additions & 0 deletions Docs/Changelog_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion OC/config_cml.plist
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@
<key>EnableWriteUnprotector</key>
<false/>
<key>FixupAppleEfiImages</key>
<false/>
<true/>
<key>ForceBooterSignature</key>
<false/>
<key>ForceExitBootServices</key>
Expand Down Expand Up @@ -1628,6 +1628,8 @@
</dict>
<key>ReservedMemory</key>
<array/>
<key>Unload</key>
<array/>
</dict>
</dict>
</plist>
4 changes: 3 additions & 1 deletion OC/config_kbl.plist
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@
<key>EnableWriteUnprotector</key>
<false/>
<key>FixupAppleEfiImages</key>
<false/>
<true/>
<key>ForceBooterSignature</key>
<false/>
<key>ForceExitBootServices</key>
Expand Down Expand Up @@ -1643,6 +1643,8 @@
</dict>
<key>ReservedMemory</key>
<array/>
<key>Unload</key>
<array/>
</dict>
</dict>
</plist>
2 changes: 1 addition & 1 deletion makefile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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).<br />If System Settings does not show OEM updates, go to App Store and search Sonoma (or newer macOS).<br />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).<br />If System Settings does not show OEM updates, go to App Store and search Sonoma (or newer macOS).<br />If OEM update fails, make sure SecureBootModel is Disabled and/or reset NVRAM and perform the update.**"

bl_input=""
bl_list=( )
Expand Down

0 comments on commit b2fc20b

Please sign in to comment.