Upgrade OC 0.9.2 (*.efi, *.kext, *.plist)
This commit is contained in:
@@ -1,5 +1,25 @@
|
||||
OpenCore Changelog
|
||||
==================
|
||||
#### v0.9.2
|
||||
- Added `DisableIoMapperMapping` quirk, thx @CaseySJ
|
||||
- Fixed disabling single user mode when Apple Secure Boot is enabled
|
||||
- Improved guard checks for `GopBurstMode` on systems where it's not needed
|
||||
- Improved compatibility of `GopBurstMode` with some very non-standard GOP implementations
|
||||
- Fixed possible hang with `GopBurstMode` enabled on DEBUG builds
|
||||
- Enabled `GopBurstMode` even with natively supported cards, in EnableGop firmware driver
|
||||
- Fixed inability to patch force-injected kexts
|
||||
- Fixed `ExternalDiskIcons` quirk on macOS 13.3+, thx @fusion71au
|
||||
- Fixed various recent reversions and some longer-standing minor bugs in `Builtin` text renderer
|
||||
- Applied some additional minor optimizations to `Builtin` text renderer
|
||||
- Implemented `InitialMode` option to allow fine control over text renderer operating mode
|
||||
- Added support for `ConsoleMode` text resolution setting to `Builtin` renderer
|
||||
- Fixed regression for ACPI quirks `RebaseRegions` and `SyncTableIds`
|
||||
- Updated build process to provide stable and bleeding-edge versions of `EnableGop`
|
||||
- Implemented minor improvements in `PickerMode` `Apple`
|
||||
- Improved filtering algorithm for `LogModules` and added `?` filter for matching non-standard log lines
|
||||
- Fixed crash when gathering system report on virtualised CPUs
|
||||
- Fixed unnecessary warning when first booting with emulated NVRAM
|
||||
|
||||
#### v0.9.1
|
||||
- Fixed long comment printing for ACPI patches, thx @corpnewt
|
||||
- Added sample config for VS Code source level debugging with `gdb`
|
||||
|
||||
Binary file not shown.
@@ -1007,6 +1007,8 @@
|
||||
<false/>
|
||||
<key>DisableIoMapper</key>
|
||||
<false/>
|
||||
<key>DisableIoMapperMapping</key>
|
||||
<false/>
|
||||
<key>DisableLinkeditJettison</key>
|
||||
<true/>
|
||||
<key>DisableRtcChecksum</key>
|
||||
@@ -1835,6 +1837,8 @@
|
||||
<string>Disabled</string>
|
||||
<key>IgnoreTextInGraphics</key>
|
||||
<false/>
|
||||
<key>InitialMode</key>
|
||||
<string>Auto</string>
|
||||
<key>ProvideConsoleGop</key>
|
||||
<true/>
|
||||
<key>ReconnectGraphicsOnConnect</key>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -3,7 +3,7 @@
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>21G419</string>
|
||||
<string>21G531</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
@@ -17,7 +17,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.6.4</string>
|
||||
<string>1.6.5</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
@@ -25,7 +25,7 @@
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.4</string>
|
||||
<string>1.6.5</string>
|
||||
<key>DTCompiler</key>
|
||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||
<key>DTPlatformBuild</key>
|
||||
|
||||
Binary file not shown.
@@ -263,7 +263,7 @@ extern proc_t kernproc;
|
||||
*
|
||||
* @param format formatted string
|
||||
*/
|
||||
EXPORT extern "C" void lilu_os_log(const char *format, ...);
|
||||
EXPORT extern "C" void lilu_os_log(const char *format, ...) __printflike(1, 2);
|
||||
|
||||
/**
|
||||
* Two-way substring search
|
||||
|
||||
Binary file not shown.
@@ -269,6 +269,8 @@
|
||||
<false/>
|
||||
<key>DisableIoMapper</key>
|
||||
<true/>
|
||||
<key>DisableIoMapperMapping</key>
|
||||
<false/>
|
||||
<key>DisableLinkeditJettison</key>
|
||||
<true/>
|
||||
<key>DisableRtcChecksum</key>
|
||||
@@ -687,6 +689,8 @@
|
||||
<string>Disabled</string>
|
||||
<key>IgnoreTextInGraphics</key>
|
||||
<false/>
|
||||
<key>InitialMode</key>
|
||||
<string>Auto</string>
|
||||
<key>ProvideConsoleGop</key>
|
||||
<true/>
|
||||
<key>ReconnectGraphicsOnConnect</key>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -3,7 +3,7 @@
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>21G419</string>
|
||||
<string>21G531</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
@@ -17,7 +17,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>KEXT</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.6.4</string>
|
||||
<string>1.6.5</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
@@ -25,7 +25,7 @@
|
||||
<string>MacOSX</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.6.4</string>
|
||||
<string>1.6.5</string>
|
||||
<key>DTCompiler</key>
|
||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||
<key>DTPlatformBuild</key>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -269,6 +269,8 @@
|
||||
<false/>
|
||||
<key>DisableIoMapper</key>
|
||||
<true/>
|
||||
<key>DisableIoMapperMapping</key>
|
||||
<false/>
|
||||
<key>DisableLinkeditJettison</key>
|
||||
<true/>
|
||||
<key>DisableRtcChecksum</key>
|
||||
@@ -699,6 +701,8 @@
|
||||
<string>Disabled</string>
|
||||
<key>IgnoreTextInGraphics</key>
|
||||
<false/>
|
||||
<key>InitialMode</key>
|
||||
<string>Auto</string>
|
||||
<key>ProvideConsoleGop</key>
|
||||
<true/>
|
||||
<key>ReconnectGraphicsOnConnect</key>
|
||||
|
||||
@@ -4,8 +4,8 @@ Note|Description
|
||||
:----|:----
|
||||
Initial macOS Support|macOS 10.15, Catalina.
|
||||
|
||||
- Opencore version: 0.9.1
|
||||
- Release date: 03/04/2023
|
||||
- Opencore version: 0.9.2
|
||||
- Release date: 08/05/2023 (delayed a week)
|
||||
|
||||
# Basic Steps
|
||||
|
||||
|
||||
@@ -1,31 +1,31 @@
|
||||
{
|
||||
"Mac-EE2EBD4B90B839A8": "latest",
|
||||
"Mac-BE0E8AC46FE800CC": "11.7.5",
|
||||
"Mac-9AE82516C7C6B903": "12.6.4",
|
||||
"Mac-BE0E8AC46FE800CC": "11.7.6",
|
||||
"Mac-9AE82516C7C6B903": "12.6.5",
|
||||
"Mac-942452F5819B1C1B": "10.13.6",
|
||||
"Mac-942C5DF58193131B": "10.13.6",
|
||||
"Mac-C08A6BB70A942AC2": "10.13.6",
|
||||
"Mac-742912EFDBEE19B3": "10.13.6",
|
||||
"Mac-66F35F19FE2A0D05": "10.15.7",
|
||||
"Mac-2E6FAB96566FE58C": "10.15.7",
|
||||
"Mac-35C1E88140C3E6CF": "11.7.5",
|
||||
"Mac-7DF21CB3ED6977E5": "11.7.5",
|
||||
"Mac-9F18E312C5C2BF0B": "12.6.4",
|
||||
"Mac-937CB26E2E02BB01": "12.6.4",
|
||||
"Mac-35C1E88140C3E6CF": "11.7.6",
|
||||
"Mac-7DF21CB3ED6977E5": "11.7.6",
|
||||
"Mac-9F18E312C5C2BF0B": "12.6.5",
|
||||
"Mac-937CB26E2E02BB01": "12.6.5",
|
||||
"Mac-827FAC58A8FDFA22": "latest",
|
||||
"Mac-226CB3C6A851A671": "latest",
|
||||
"Mac-0CFF9C7C2B63DF8D": "latest",
|
||||
"Mac-C3EC7CD22292981F": "10.15.7",
|
||||
"Mac-AFD8A9D944EA4843": "10.15.7",
|
||||
"Mac-189A3D4F975D5FFC": "11.7.5",
|
||||
"Mac-3CBD00234E554E41": "11.7.5",
|
||||
"Mac-2BD1B31983FE1663": "11.7.5",
|
||||
"Mac-06F11FD93F0323C5": "12.6.4",
|
||||
"Mac-06F11F11946D27C5": "12.6.4",
|
||||
"Mac-E43C1C25D4880AD6": "12.6.4",
|
||||
"Mac-473D31EABEB93F9B": "12.6.4",
|
||||
"Mac-66E35819EE2D0D05": "12.6.4",
|
||||
"Mac-A5C67F76ED83108C": "12.6.4",
|
||||
"Mac-189A3D4F975D5FFC": "11.7.6",
|
||||
"Mac-3CBD00234E554E41": "11.7.6",
|
||||
"Mac-2BD1B31983FE1663": "11.7.6",
|
||||
"Mac-06F11FD93F0323C5": "12.6.5",
|
||||
"Mac-06F11F11946D27C5": "12.6.5",
|
||||
"Mac-E43C1C25D4880AD6": "12.6.5",
|
||||
"Mac-473D31EABEB93F9B": "12.6.5",
|
||||
"Mac-66E35819EE2D0D05": "12.6.5",
|
||||
"Mac-A5C67F76ED83108C": "12.6.5",
|
||||
"Mac-B4831CEBD52A0C4C": "latest",
|
||||
"Mac-CAD6701F7CEA0921": "latest",
|
||||
"Mac-551B86E5744E2388": "latest",
|
||||
@@ -43,7 +43,7 @@
|
||||
"Mac-942459F5819B171B": "10.13.6",
|
||||
"Mac-4B7AC7E43945597E": "10.15.7",
|
||||
"Mac-6F01561E16C75D06": "10.15.7",
|
||||
"Mac-F60DEB81FF30ACF6": "12.6.4",
|
||||
"Mac-F60DEB81FF30ACF6": "12.6.5",
|
||||
"Mac-27AD2F918AE68F61": "latest",
|
||||
"Mac-F2208EC8": "10.13.6",
|
||||
"Mac-8ED6AF5B48C039E1": "10.13.6",
|
||||
@@ -51,7 +51,7 @@
|
||||
"Mac-7BA5B2794B2CDB12": "10.13.6",
|
||||
"Mac-031AEE4D24BFF0B1": "10.15.7",
|
||||
"Mac-F65AE981FFA204ED": "10.15.7",
|
||||
"Mac-35C5E08120C7EEAF": "12.6.4",
|
||||
"Mac-35C5E08120C7EEAF": "12.6.5",
|
||||
"Mac-7BA5B2DFE22DDD8C": "latest",
|
||||
"Mac-942B5BF58194151B": "10.13.6",
|
||||
"Mac-942B59F58194171B": "10.13.6",
|
||||
@@ -61,13 +61,13 @@
|
||||
"Mac-031B6874CF7F642A": "10.15.7",
|
||||
"Mac-27ADBB7B4CEE8E61": "10.15.7",
|
||||
"Mac-77EB7D7DAF985301": "10.15.7",
|
||||
"Mac-81E3E92DD6088272": "11.7.5",
|
||||
"Mac-42FD25EABCABB274": "11.7.5",
|
||||
"Mac-A369DDC4E67F1C45": "12.6.4",
|
||||
"Mac-FFE5EF870D7BA81A": "12.6.4",
|
||||
"Mac-DB15BD556843C820": "12.6.4",
|
||||
"Mac-65CE76090165799A": "12.6.4",
|
||||
"Mac-B809C3757DA9BB8D": "12.6.4",
|
||||
"Mac-81E3E92DD6088272": "11.7.6",
|
||||
"Mac-42FD25EABCABB274": "11.7.6",
|
||||
"Mac-A369DDC4E67F1C45": "12.6.5",
|
||||
"Mac-FFE5EF870D7BA81A": "12.6.5",
|
||||
"Mac-DB15BD556843C820": "12.6.5",
|
||||
"Mac-65CE76090165799A": "12.6.5",
|
||||
"Mac-B809C3757DA9BB8D": "12.6.5",
|
||||
"Mac-4B682C642B45593E": "latest",
|
||||
"Mac-77F17D7DA9285301": "latest",
|
||||
"Mac-BE088AF8C5EB4FA2": "latest",
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user