diff --git a/Docs/Changelog.md b/Docs/Changelog.md
index e20e6a1..2b09966 100644
--- a/Docs/Changelog.md
+++ b/Docs/Changelog.md
@@ -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`
diff --git a/Docs/Configuration.pdf b/Docs/Configuration.pdf
index f1e1745..69c4d85 100644
Binary files a/Docs/Configuration.pdf and b/Docs/Configuration.pdf differ
diff --git a/Docs/Sample.plist b/Docs/Sample.plist
index 28eb5da..601f904 100644
--- a/Docs/Sample.plist
+++ b/Docs/Sample.plist
@@ -1007,6 +1007,8 @@
DisableIoMapper
+ DisableIoMapperMapping
+
DisableLinkeditJettison
DisableRtcChecksum
@@ -1835,6 +1837,8 @@
Disabled
IgnoreTextInGraphics
+ InitialMode
+ Auto
ProvideConsoleGop
ReconnectGraphicsOnConnect
diff --git a/EFI-Debug/BOOT/BOOTx64.efi b/EFI-Debug/BOOT/BOOTx64.efi
index 60687b7..26c3acf 100644
Binary files a/EFI-Debug/BOOT/BOOTx64.efi and b/EFI-Debug/BOOT/BOOTx64.efi differ
diff --git a/EFI-Debug/OC/Drivers/AudioDxe.efi b/EFI-Debug/OC/Drivers/AudioDxe.efi
index 3fc9172..9bb7309 100644
Binary files a/EFI-Debug/OC/Drivers/AudioDxe.efi and b/EFI-Debug/OC/Drivers/AudioDxe.efi differ
diff --git a/EFI-Debug/OC/Drivers/OpenRuntime.efi b/EFI-Debug/OC/Drivers/OpenRuntime.efi
index 5e7f202..36e03d5 100644
Binary files a/EFI-Debug/OC/Drivers/OpenRuntime.efi and b/EFI-Debug/OC/Drivers/OpenRuntime.efi differ
diff --git a/EFI-Debug/OC/Drivers/ResetNvramEntry.efi b/EFI-Debug/OC/Drivers/ResetNvramEntry.efi
index d0ec589..d30b6db 100644
Binary files a/EFI-Debug/OC/Drivers/ResetNvramEntry.efi and b/EFI-Debug/OC/Drivers/ResetNvramEntry.efi differ
diff --git a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Info.plist b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Info.plist
index fcc1925..96c0203 100644
--- a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Info.plist
+++ b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Info.plist
@@ -3,7 +3,7 @@
BuildMachineOSBuild
- 21G419
+ 21G531
CFBundleDevelopmentRegion
en
CFBundleExecutable
@@ -17,7 +17,7 @@
CFBundlePackageType
KEXT
CFBundleShortVersionString
- 1.6.4
+ 1.6.5
CFBundleSignature
????
CFBundleSupportedPlatforms
@@ -25,7 +25,7 @@
MacOSX
CFBundleVersion
- 1.6.4
+ 1.6.5
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
diff --git a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu
index 9f95bad..a3ffcb0 100755
Binary files a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu and b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu differ
diff --git a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp
index cbc2181..4e9f18d 100644
--- a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp
+++ b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp
@@ -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
diff --git a/EFI-Debug/OC/OpenCore.efi b/EFI-Debug/OC/OpenCore.efi
index ea26db9..c24ca87 100644
Binary files a/EFI-Debug/OC/OpenCore.efi and b/EFI-Debug/OC/OpenCore.efi differ
diff --git a/EFI-Debug/OC/config.plist b/EFI-Debug/OC/config.plist
index 348398d..4455974 100644
--- a/EFI-Debug/OC/config.plist
+++ b/EFI-Debug/OC/config.plist
@@ -269,6 +269,8 @@
DisableIoMapper
+ DisableIoMapperMapping
+
DisableLinkeditJettison
DisableRtcChecksum
@@ -687,6 +689,8 @@
Disabled
IgnoreTextInGraphics
+ InitialMode
+ Auto
ProvideConsoleGop
ReconnectGraphicsOnConnect
diff --git a/EFI-Release/OC/Drivers/OpenCanopy.efi b/EFI-Release/OC/Drivers/OpenCanopy.efi
index 20854c6..cc7bf90 100644
Binary files a/EFI-Release/OC/Drivers/OpenCanopy.efi and b/EFI-Release/OC/Drivers/OpenCanopy.efi differ
diff --git a/EFI-Release/OC/Drivers/ResetNvramEntry.efi b/EFI-Release/OC/Drivers/ResetNvramEntry.efi
index 60aaf7e..85b602b 100644
Binary files a/EFI-Release/OC/Drivers/ResetNvramEntry.efi and b/EFI-Release/OC/Drivers/ResetNvramEntry.efi differ
diff --git a/EFI-Release/OC/Kexts/Lilu.kext/Contents/Info.plist b/EFI-Release/OC/Kexts/Lilu.kext/Contents/Info.plist
index fcc1925..96c0203 100644
--- a/EFI-Release/OC/Kexts/Lilu.kext/Contents/Info.plist
+++ b/EFI-Release/OC/Kexts/Lilu.kext/Contents/Info.plist
@@ -3,7 +3,7 @@
BuildMachineOSBuild
- 21G419
+ 21G531
CFBundleDevelopmentRegion
en
CFBundleExecutable
@@ -17,7 +17,7 @@
CFBundlePackageType
KEXT
CFBundleShortVersionString
- 1.6.4
+ 1.6.5
CFBundleSignature
????
CFBundleSupportedPlatforms
@@ -25,7 +25,7 @@
MacOSX
CFBundleVersion
- 1.6.4
+ 1.6.5
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
diff --git a/EFI-Release/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu b/EFI-Release/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu
index 2884a43..2d320d6 100755
Binary files a/EFI-Release/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu and b/EFI-Release/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu differ
diff --git a/EFI-Release/OC/OpenCore.efi b/EFI-Release/OC/OpenCore.efi
index 4da6601..682b9f6 100644
Binary files a/EFI-Release/OC/OpenCore.efi and b/EFI-Release/OC/OpenCore.efi differ
diff --git a/EFI-Release/OC/config.plist b/EFI-Release/OC/config.plist
index 7baae37..6e2ec80 100644
--- a/EFI-Release/OC/config.plist
+++ b/EFI-Release/OC/config.plist
@@ -269,6 +269,8 @@
DisableIoMapper
+ DisableIoMapperMapping
+
DisableLinkeditJettison
DisableRtcChecksum
@@ -699,6 +701,8 @@
Disabled
IgnoreTextInGraphics
+ InitialMode
+ Auto
ProvideConsoleGop
ReconnectGraphicsOnConnect
diff --git a/README.md b/README.md
index fd41140..611edcf 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/Utils/macrecovery/boards.json b/Utils/macrecovery/boards.json
index 79d6d02..8378c8c 100644
--- a/Utils/macrecovery/boards.json
+++ b/Utils/macrecovery/boards.json
@@ -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",
diff --git a/Utils/ocvalidate/ocvalidate b/Utils/ocvalidate/ocvalidate
index 7c9976b..5d81688 100755
Binary files a/Utils/ocvalidate/ocvalidate and b/Utils/ocvalidate/ocvalidate differ
diff --git a/Utils/ocvalidate/ocvalidate.exe b/Utils/ocvalidate/ocvalidate.exe
index 3b06c36..b0fbdaa 100755
Binary files a/Utils/ocvalidate/ocvalidate.exe and b/Utils/ocvalidate/ocvalidate.exe differ
diff --git a/Utils/ocvalidate/ocvalidate.linux b/Utils/ocvalidate/ocvalidate.linux
index 354562d..07d3e9a 100755
Binary files a/Utils/ocvalidate/ocvalidate.linux and b/Utils/ocvalidate/ocvalidate.linux differ