Changelog.md 9.2 KB
Newer Older
V
vit9696 已提交
1 2
OpenCore Changelog
==================
3

V
vit9696 已提交
4 5
#### v0.5.6
- Various improvements to builtin text renderer
V
vit9696 已提交
6 7
- Fixed locating DMG recovery in APTIO IV firmwares on FAT32
- Fixed loading DMG recovery in APTIO IV firmwares on FAT32
8
- Removed `AvoidHighAlloc` quirk due to removed I/O over 4GB
9 10 11 12 13 14
- Moved `ConsoleMode`, `Resolution` options to `Output` section
- Moved console-related UEFI quirks to `Output` section
- Replaced `ConsoleControl` and `BuiltinTextRenderer` with `TextRenderer`
- Added `Scale` option to set builtin text renderer scaling
- Removed `ConsoleBehaviourOs` and `ConsoleBehaviourUi`
- Fixed providing ConsoleOutHandle GOP when running from Shell
15
- Added `PickerAttributes` option to colour picker
16
- Added `ProtectSecureBoot` option through FwRuntimeServices
17
- Replaced `RequireVault` and `RequireSignature` with `Vault`
18 19
- Added `BootKicker` tool to support launching Apple BootPicker
- Added BootPicker support as an external UI in OC through `PickerMode`
20
- Added `ProvideEarlyConsole` to view console output during startup
V
vit9696 已提交
21

22 23 24 25
#### v0.5.5
- Fixed CPU bus ratio calculation for Nehalem and Westmere
- Fixed CPU package calculation on MacPro5,1 and similar
- Improved OpenCore rerun detection for new versions
26 27
- Fixed loading picker on boot failure when it is hidden
- Added PMC ACPI sample for 300-series chipsets
28 29
- Improved driver connection performance on APTIO IV
- Fixed boot option saving in LogoutHook.command
30
- Added support for OEM information in `ExposeSensitiveData`
31 32
- Improved `SanitiseClearScreen` to avoid mode switching
- Replaced `SupportsCsm` with `AdviseWindows` enabling UEFI mode
V
vit9696 已提交
33
- Fixed issues with default boot path selection on some boards
A
Andrey1970AppleLife 已提交
34
- Update builtin firmware versions
M
Michael Belyaev 已提交
35
- Fixed `AdviseWindows` not setting `FirmwareFeatures` in NVRAM
36
- Added `TakeoffDelay` option for improved action hotkey support
37 38
- Added Mac GOP support to `ProvideConsoleGop` quirk
- Added experimental `BuiltinTextRenderer` boot option
39
- Added `DummyPowerManagement` kernel quirk to disable CPU PM
40

V
vit9696 已提交
41 42
#### v0.5.4
- Added Enter key handling in boot menu for quick proceed
A
Andrey1970AppleLife 已提交
43
- Update builtin firmware versions
44 45
- Bundled FwRuntimeServices driver with OpenCore
- Allowed writing to non-volatile variables with disabled write
46 47 48
- Fixed microcode reading on Intel CPUs
- Fixed SMBIOS Type4 External Clock values
- Improved Windows compatibility on some setups (acidanthera/bugtracker#614)
49
- Added `SupportsCsm` and option in `PlatformInfo/Generic`
50 51
- Added `OSInfo` protocol support
- Added `SignalAppleOS` `Booter` quirk to enable IGPU on Macs in other OS
52 53
- Added `AppleSmcIo`protocol support (replaces `VirtualSmc` UEFI driver)
- Added `AuthRestart` security property for VirtualSMC authenticated restart
V
vit9696 已提交
54 55
- Fixed input protocol initialisation on VMware fusion
- Added arrow key handling in boot menu
56
- FileVault 2-like key input is now the only supported input in boot menu
57 58
- Fixed 5 second delay when exiting Shell to OpenCore Picker
- Added default boot option update and `AllowSetDefault` `Security` option
59 60 61
- Fixed CPU package detection on configurations with multiple CPUs
- Bundled CleanNvram and VerifyMsrE2 tools for debugging
- Added screen clearing after choosing boot entry in picker
62 63 64
- Added `WriteFlash` NVRAM option to enable writing variables in `Add`
- Added `LegacyOverwrite` NVRAM option to allow overwriting variables by nvram.plist
- Added `AppleXcpmForceBoost` kernel quirk to maximise select Xeon performance
65 66
- Bundled NvmExpressDxe and XhciDxe drivers for platforms that need them
- Added `IncreasePciBarSize` kernel quirk for select platforms with PCI space issues
V
vit9696 已提交
67

A
Andrey1970AppleLife 已提交
68 69
#### v0.5.3
- Update builtin firmware versions
V
vit9696 已提交
70 71 72 73 74
- Fixed interpreting letters in boot menu
- Fixed timeout abortion with PollAppleHotKeys quirk
- Fixed rare kext injection failure due to plist-only kext in prelinkedkernel
- Fixed error reporting for dmg loading
- Added various debugging improvements
75 76
- Added new crypto stack resulting in vault key format changes
- Added `UnblockFsConnect` UEFI quirk to fix missing filesystems on some laptops
77
- Added `RequestBootVarFallback` UEFI quirk to circumvent firmware boot option issues
78 79
- Added `ThirdPartyDrives` kernel quirk fixing SSD trim and 10.15 SATA hibernation (thx @lvs1974)
- Removed `ThirdPartyTrim` kernel quirk in favour of `ThirdPartyDrives`
V
vit9696 已提交
80
- Added Intel Xeon E5 (Broadwell-EP) support (thx @crazyi)
81
- Switched to edk2-stable201911, which is now the minimum supportd EDK II version
A
Andrey1970AppleLife 已提交
82

V
vit9696 已提交
83
#### v0.5.2
V
vit9696 已提交
84
- Fixed `MinKernel` and `MaxKernel` logic (thx @dhinakg, @reitermarkus)
85 86
- Fixed ASSERT when booting non-Apple OSes without arguments from the DEBUG version
- Added `MmioWhitelist` configuration option
87
- Added `PowerTimeoutKernelPanic` kernel quirk
88
- Fixed erratic cursor appearing in release builds
89
- Moved `ReconnectOnResChange` to a user-configurable quirk to avoid freezes
90
- Added OpenCore version to picker ui, configured by `ExposeSensitiveData`
V
vit9696 已提交
91
- Added hypervisor CPUID support to work with virtualization (thx @Leoyzen)
V
vit9696 已提交
92

V
vit9696 已提交
93
#### v0.5.1
V
vit9696 已提交
94
- Added support of kernel resource kext injection
V
vit9696 已提交
95
- Added support for 0.25% clock slowdown on Xeon Scalable CPUs (thx @mrmiller)
96
- Replaced `MatchKernel` with `MinKernel` and `MaxKernel`
97
- Added `Arguments` to `Tools` and `Entries` sections
98
- Fixed broken timer for 300 series Intel chipsets
V
vit9696 已提交
99
- Added `Input` section for mouse and keyboard aggregation
V
vit9696 已提交
100

V
vit9696 已提交
101
#### v0.5.0
A
Andrey1970AppleLife 已提交
102
- Added builtin firmware versions for new models 2019
V
vit9696 已提交
103
- Fixed LogoutHook leaving random directories in `$HOME`
104 105
- Fixed FSBFrequency calculation on Xeon Scalable CPUs (thx @mrmiller)
- Fixed ARTFrequency specifying on Intel server and atom models
V
vit9696 已提交
106
- Increased log size to 256 KB by default
V
vit9696 已提交
107 108
- Added `ReplaceTabWithSpace` quirk to improve Shell experience
- Added `ClearScreenOnModeSwitch` quirk to avoid visual glitches
V
vit9696 已提交
109
- Added `MISC_PWR_MGMT` patch to `AppleXcpmExtraMsrs` quirk (thx @mrmiller)
V
vit9696 已提交
110
- Added `DevirtualiseMmio` quirk to `Booter` section
111
- Added FileVault 2 user interface protocols formerly in AppleUiSupport
112
- Improved kernel patch logging to include configuration comments
113
- Added MSFT basic data and Linux root fs recognition to `ScanPolicy`
114 115 116
- Fixed RT region protection restoration regression (thx Sniki)
- Added `OPT`, `CMD+R`, `CMD+OPT+P+R` boot action hotkey support
- Added `PollAppleHotKeys` to register boot.efi hotkeys in the picker
117
- Added `DisableSingleUser` quirk to prohibit single user mode
V
vit9696 已提交
118 119
- Upgraded EDK II base package to edk2-stable201908
- Prohibited argument changing by BootNext
V
vit9696 已提交
120

V
vit9696 已提交
121
#### v0.0.4
V
vit9696 已提交
122 123 124
- Fixed kext injection issues with dummy dependencies
- Fixed kext injection issues with reused vtables
- Fixed Custom SMBIOS table update patches
125
- Added timestamp to the log file and changed extension to txt
126 127
- Enhanced `LogoutHook` script used for emulated NVRAM saving
- Fixed multiple operating system support in APFS containers
128
- Added `AvoidHighAlloc` UEFI quirk to avoid high memory allocs
A
Andrey1970AppleLife 已提交
129
- Updated builtin firmware versions for 10.15 beta support
130 131 132 133 134 135
- Added `Booter` section for Apple bootloader preferences
- Dropped `AptioMemoryFix.efi` support for `Booter` and `FwRuntimeServices.efi`
- Fixed hibernation issues in Windows with `RequestBootVarRouting`
- Significantly improved boot stability on APTIO
- Added support for Windows & OpenCore on the same drive through `BlessOverride`
- Added advanced user-specified boot entries through `Misc` -> `Entries`
136
- Added `DisableVariableWrite` quirk to disable hardware NVRAM write in macOS
V
vit9696 已提交
137

138 139 140
#### v0.0.3
- Added complete modern platform database (2012+)
- Added `DisableIoMapper` kernel quirk
141
- Fixed ACPI modification failures with nested multiboot
142 143 144
- Dropped `IgnoreForWindows` quirk legacy
- Added basic AMD Zen CPU support
- Added `Misc` -> `Tools` section to add third-party tools
145
- Added `Kernel` -> `Emulate` section for CPUID patches
146
- Added `CustomSMBIOSGuid` quirk for Custom SMBIOS update mode
147
- Added `PanicNoKextDump` quirk to avoid kext dump in panics
148 149 150 151
- Switched to EDK II stable and reduced image size
- Added `LapicKernelPanic` kernel quirk
- Added `AppleXcpmExtraMsrs` quirk and improved XCPM patches
- Added `(external)` suffix for external drives in boot menu
152
- Added `UsePicker` option, do enable for OC boot management
153
- Added nvram.plist loading for legacy and incompatible platforms
154
- Improved instructions for legacy and Windows installation
V
vit9696 已提交
155
- Added Windows Boot Camp switching support
V
vit9696 已提交
156
- Added basic hibernation detection & support
157
- Added `ResetHwSig` ACPI quirk to workaround hibernation
158
- Removed `Custom` subfolder requirement from `ACPI` tables
V
vit9696 已提交
159
- Fixed kext injection in 10.7.x and 10.8.x
V
vit9696 已提交
160
- Added ESP partition type detection to ScanPolicy
161
- Added support for third-party user interfaces
162

163 164 165
#### v0.0.2
- Documentation improvements (see Differences.pdf)
- Platform information database updates
166
- Fixed misbehaving `Debug` -> `Target` enable bit
167
- Added `ResetLogoStatus` ACPI quirk
168 169
- Added `SpoofVendor` PlatformInfo feature
- Replaced `ExposeBootPath` with `ExposeSensitiveData`
V
vit9696 已提交
170
- Added builtin implementation of Data Hub protocol
171 172
- Dropped `UpdateSMBIOSMode` `Auto` mode in favour of `Create`
- Fixed SMBIOS CPU detection for Xeon and Core models
173
- Moved `ConsoleControl` configuration to `Protocols`
174
- Added `Security` -> `ScanPolicy` preference
175
- Fixed invalid `board-rev` exposure in Data Hub
V
vit9696 已提交
176
- Fixed SMBIOS Type 133 table exposure
177
- Added support for SMBIOS Type 134 table exposure
178

V
vit9696 已提交
179 180
#### v0.0.1
- Initial developer preview release