diff --git a/Docs/Changelog.md b/Docs/Changelog.md
index e7b0886..3a21e16 100644
--- a/Docs/Changelog.md
+++ b/Docs/Changelog.md
@@ -1,5 +1,22 @@
OpenCore Changelog
==================
+#### v0.8.9
+- Improved debug logging when applying ACPI patches
+- Fixed loading macOS with legacy boot without Apple Secure Boot
+- Added Linux support to legacy boot BootInstall script
+- Updated builtin firmware versions for SMBIOS and the rest
+- Fixed incomplete console mode initialisation when started in graphics mode
+- Provided additional UEFI forge mode, for use in firmware drivers
+- Implemented firmware driver enabling pre-OpenCore graphics on non-natively supported GPUs on EFI-era Macs
+- Prevented unwanted clear screen to console background colour when in graphics mode
+- Added `ResizeUsePciRbIo` quirk to workaround broken PciIo on some UEFI firmwares, thx @xCuri0
+- Fixed crash while using `SysReport` on older Atom systems
+- Fixed kexts without a Contents folder not being patched during a cacheless boot
+- Added read-only sections (`.rdata`) to all drivers for better memory protection when supported
+- Fixed crash while using `SysReport` on systems with non-audio HDA codecs
+- Fixed debug script support for GDB and LLDB
+- Fixed legacy boot debug builds asserting on macOS loading
+
#### v0.8.8
- Updated underlying EDK II package to edk2-stable202211
- Updated AppleKeyboardLayouts.txt from macOS 13.1
diff --git a/Docs/Configuration.pdf b/Docs/Configuration.pdf
index 205ad38..03184a9 100644
Binary files a/Docs/Configuration.pdf and b/Docs/Configuration.pdf differ
diff --git a/Docs/Sample.plist b/Docs/Sample.plist
index 54bfbcd..683c4af 100644
--- a/Docs/Sample.plist
+++ b/Docs/Sample.plist
@@ -1917,6 +1917,8 @@
ResizeGpuBars
-1
+ ResizeUsePciRbIo
+
TscSyncTimeout
0
UnblockFsConnect
diff --git a/EFI-Debug/BOOT/BOOTx64.efi b/EFI-Debug/BOOT/BOOTx64.efi
index 66b88c2..1fda3ac 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 6aea0b7..0011c01 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 74d45d7..a839a4c 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 8fb6a8c..863eceb 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/WhateverGreen.kext/Contents/Info.plist b/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/Info.plist
index 4cd10b8..279cf41 100644
--- a/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/Info.plist
+++ b/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/Info.plist
@@ -3,7 +3,7 @@
BuildMachineOSBuild
- 21G320
+ 21G419
CFBundleDevelopmentRegion
en
CFBundleExecutable
@@ -17,7 +17,7 @@
CFBundlePackageType
KEXT
CFBundleShortVersionString
- 1.6.3
+ 1.6.4
CFBundleSignature
????
CFBundleSupportedPlatforms
@@ -25,7 +25,7 @@
MacOSX
CFBundleVersion
- 1.6.3
+ 1.6.4
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
diff --git a/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen b/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen
index 7c54f2e..5b87214 100755
Binary files a/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen and b/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen differ
diff --git a/EFI-Debug/OC/OpenCore.efi b/EFI-Debug/OC/OpenCore.efi
index b3199ba..5bf6b42 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 32d7215..51036f0 100644
--- a/EFI-Debug/OC/config.plist
+++ b/EFI-Debug/OC/config.plist
@@ -339,7 +339,7 @@
PickerVariant
Auto
PollAppleHotKeys
-
+
ShowPicker
TakeoffDelay
@@ -771,6 +771,8 @@
ResizeGpuBars
-1
+ ResizeUsePciRbIo
+
TscSyncTimeout
0
UnblockFsConnect
diff --git a/EFI-Release/BOOT/BOOTx64.efi b/EFI-Release/BOOT/BOOTx64.efi
index 6611a65..52e9f74 100644
Binary files a/EFI-Release/BOOT/BOOTx64.efi and b/EFI-Release/BOOT/BOOTx64.efi differ
diff --git a/EFI-Release/OC/Drivers/AudioDxe.efi b/EFI-Release/OC/Drivers/AudioDxe.efi
index b2453d7..7ad1fb0 100644
Binary files a/EFI-Release/OC/Drivers/AudioDxe.efi and b/EFI-Release/OC/Drivers/AudioDxe.efi differ
diff --git a/EFI-Release/OC/Drivers/OpenCanopy.efi b/EFI-Release/OC/Drivers/OpenCanopy.efi
index f47b941..1a6195e 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/OpenRuntime.efi b/EFI-Release/OC/Drivers/OpenRuntime.efi
index 24e0073..cacf1af 100644
Binary files a/EFI-Release/OC/Drivers/OpenRuntime.efi and b/EFI-Release/OC/Drivers/OpenRuntime.efi differ
diff --git a/EFI-Release/OC/Drivers/ResetNvramEntry.efi b/EFI-Release/OC/Drivers/ResetNvramEntry.efi
index d3710c4..6c0793c 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/WhateverGreen.kext/Contents/Info.plist b/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/Info.plist
index 4cd10b8..279cf41 100644
--- a/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/Info.plist
+++ b/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/Info.plist
@@ -3,7 +3,7 @@
BuildMachineOSBuild
- 21G320
+ 21G419
CFBundleDevelopmentRegion
en
CFBundleExecutable
@@ -17,7 +17,7 @@
CFBundlePackageType
KEXT
CFBundleShortVersionString
- 1.6.3
+ 1.6.4
CFBundleSignature
????
CFBundleSupportedPlatforms
@@ -25,7 +25,7 @@
MacOSX
CFBundleVersion
- 1.6.3
+ 1.6.4
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
diff --git a/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen b/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen
index e2aa668..d53613a 100755
Binary files a/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen and b/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen differ
diff --git a/EFI-Release/OC/OpenCore.efi b/EFI-Release/OC/OpenCore.efi
index d3b5803..d91c291 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 4c6a1f3..46f26fb 100644
--- a/EFI-Release/OC/config.plist
+++ b/EFI-Release/OC/config.plist
@@ -339,7 +339,7 @@
PickerVariant
Auto
PollAppleHotKeys
-
+
ShowPicker
TakeoffDelay
@@ -783,6 +783,8 @@
ResizeGpuBars
-1
+ ResizeUsePciRbIo
+
TscSyncTimeout
0
UnblockFsConnect
diff --git a/README.md b/README.md
index f0b1154..28ea88a 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,8 @@ Note|Description
:----|:----
Initial macOS Support|macOS 10.15, Catalina.
-- Opencore version: 0.8.8
-- Release date: 02/01/2023
+- Opencore version: 0.8.9
+- Release date: 14/02/2023
# Basic Steps
diff --git a/Utils/macrecovery/boards.json b/Utils/macrecovery/boards.json
index 433a640..c74dcbb 100644
--- a/Utils/macrecovery/boards.json
+++ b/Utils/macrecovery/boards.json
@@ -1,31 +1,31 @@
{
"Mac-EE2EBD4B90B839A8": "latest",
- "Mac-BE0E8AC46FE800CC": "11.7.2",
- "Mac-9AE82516C7C6B903": "12.6.2",
+ "Mac-BE0E8AC46FE800CC": "11.7.3",
+ "Mac-9AE82516C7C6B903": "12.6.3",
"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.2",
- "Mac-7DF21CB3ED6977E5": "11.7.2",
- "Mac-9F18E312C5C2BF0B": "12.6.2",
- "Mac-937CB26E2E02BB01": "12.6.2",
+ "Mac-35C1E88140C3E6CF": "11.7.3",
+ "Mac-7DF21CB3ED6977E5": "11.7.3",
+ "Mac-9F18E312C5C2BF0B": "12.6.3",
+ "Mac-937CB26E2E02BB01": "12.6.3",
"Mac-827FAC58A8FDFA22": "latest",
"Mac-226CB3C6A851A671": "latest",
"Mac-0CFF9C7C2B63DF8D": "latest",
"Mac-C3EC7CD22292981F": "10.15.7",
"Mac-AFD8A9D944EA4843": "10.15.7",
- "Mac-189A3D4F975D5FFC": "11.7.2",
- "Mac-3CBD00234E554E41": "11.7.2",
- "Mac-2BD1B31983FE1663": "11.7.2",
- "Mac-06F11FD93F0323C5": "12.6.2",
- "Mac-06F11F11946D27C5": "12.6.2",
- "Mac-E43C1C25D4880AD6": "12.6.2",
- "Mac-473D31EABEB93F9B": "12.6.2",
- "Mac-66E35819EE2D0D05": "12.6.2",
- "Mac-A5C67F76ED83108C": "12.6.2",
+ "Mac-189A3D4F975D5FFC": "11.7.3",
+ "Mac-3CBD00234E554E41": "11.7.3",
+ "Mac-2BD1B31983FE1663": "11.7.3",
+ "Mac-06F11FD93F0323C5": "12.6.3",
+ "Mac-06F11F11946D27C5": "12.6.3",
+ "Mac-E43C1C25D4880AD6": "12.6.3",
+ "Mac-473D31EABEB93F9B": "12.6.3",
+ "Mac-66E35819EE2D0D05": "12.6.3",
+ "Mac-A5C67F76ED83108C": "12.6.3",
"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.2",
+ "Mac-F60DEB81FF30ACF6": "12.6.3",
"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.2",
+ "Mac-35C5E08120C7EEAF": "12.6.3",
"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.2",
- "Mac-42FD25EABCABB274": "11.7.2",
- "Mac-A369DDC4E67F1C45": "12.6.2",
- "Mac-FFE5EF870D7BA81A": "12.6.2",
- "Mac-DB15BD556843C820": "12.6.2",
- "Mac-65CE76090165799A": "12.6.2",
- "Mac-B809C3757DA9BB8D": "12.6.2",
+ "Mac-81E3E92DD6088272": "11.7.3",
+ "Mac-42FD25EABCABB274": "11.7.3",
+ "Mac-A369DDC4E67F1C45": "12.6.3",
+ "Mac-FFE5EF870D7BA81A": "12.6.3",
+ "Mac-DB15BD556843C820": "12.6.3",
+ "Mac-65CE76090165799A": "12.6.3",
+ "Mac-B809C3757DA9BB8D": "12.6.3",
"Mac-4B682C642B45593E": "latest",
"Mac-77F17D7DA9285301": "latest",
"Mac-BE088AF8C5EB4FA2": "latest",
diff --git a/Utils/ocvalidate/ocvalidate b/Utils/ocvalidate/ocvalidate
index 31aabf7..2d22b68 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 c12877d..059c6b3 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 88669a7..85c73a1 100755
Binary files a/Utils/ocvalidate/ocvalidate.linux and b/Utils/ocvalidate/ocvalidate.linux differ