From 8509746a49599f31e2531c2263d9df83ff6b5bd6 Mon Sep 17 00:00:00 2001 From: Jazzzny Date: Tue, 12 Mar 2024 19:20:46 -0400 Subject: [PATCH] Add Macmini7,1 to exclude list --- resources/build/firmware.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/build/firmware.py b/resources/build/firmware.py index 82fa86a00..866ec2c10 100644 --- a/resources/build/firmware.py +++ b/resources/build/firmware.py @@ -45,13 +45,13 @@ class BuildFirmware: Apple logo Handling """ - # Macs that natively support Monterey (excluding MacPro6,1) won't have boot.efi draw the Apple logo. + # Macs that natively support Monterey (excluding MacPro6,1 and Macmini7,1) won't have boot.efi draw the Apple logo. # This causes a cosmetic issue when booting through OpenCore, as the Apple logo will be missing. if not self.model in smbios_data.smbios_dictionary: return - if smbios_data.smbios_dictionary[self.model]["Max OS Supported"] >= os_data.os_data.monterey and self.model != "MacPro6,1": + if smbios_data.smbios_dictionary[self.model]["Max OS Supported"] >= os_data.os_data.monterey and self.model not in ["MacPro6,1", "Macmini7,1"]: logging.info("- Enabling Boot Logo patch") support.BuildSupport(self.model, self.constants, self.config).get_item_by_kv(self.config["Booter"]["Patch"], "Comment", "Patch SkipLogo")["Enabled"] = True