From 832232dd3781d3491cf3d20565a68861e3153f1c Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Mon, 10 Jun 2024 16:20:30 -0600 Subject: [PATCH] smbios_data.py: Adjust max OS for MacBookAir8,x --- opencore_legacy_patcher/datasets/smbios_data.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/opencore_legacy_patcher/datasets/smbios_data.py b/opencore_legacy_patcher/datasets/smbios_data.py index 011b2100e..2981a0a9b 100644 --- a/opencore_legacy_patcher/datasets/smbios_data.py +++ b/opencore_legacy_patcher/datasets/smbios_data.py @@ -507,7 +507,7 @@ smbios_dictionary = { "FirmwareFeatures": "0x8FD8FF42E", "SecureBootModel": "j140k", "CPU Generation": cpu_data.CPUGen.coffee_lake.value, - "Max OS Supported": os_data.os_data.max_os, + "Max OS Supported": os_data.os_data.sequoia, "Wireless Model": device_probe.Broadcom.Chipsets.AppleBCMWLANBusInterfacePCIe, "Bluetooth Model": bluetooth_data.bluetooth_data.UART, "Screen Size": 13, @@ -524,7 +524,7 @@ smbios_dictionary = { "FirmwareFeatures": "0x8FD8FF42E", "SecureBootModel": "j140k", # TODO: Verify "CPU Generation": cpu_data.CPUGen.coffee_lake.value, - "Max OS Supported": os_data.os_data.max_os, + "Max OS Supported": os_data.os_data.sequoia, "Wireless Model": device_probe.Broadcom.Chipsets.AppleBCMWLANBusInterfacePCIe, "Bluetooth Model": bluetooth_data.bluetooth_data.UART, "Screen Size": 13, @@ -543,7 +543,7 @@ smbios_dictionary = { "FirmwareFeatures": "0x8FD8FF42E", "SecureBootModel": "x589amlu", "CPU Generation": cpu_data.CPUGen.coffee_lake.value, - "Max OS Supported": os_data.os_data.max_os, + "Max OS Supported": os_data.os_data.sequoia, "Wireless Model": device_probe.Broadcom.Chipsets.AppleBCMWLANBusInterfacePCIe, "Bluetooth Model": bluetooth_data.bluetooth_data.UART, "Screen Size": 13, @@ -561,7 +561,7 @@ smbios_dictionary = { "FirmwareFeatures": "0x8FD8FF42E", "SecureBootModel": "j140a", "CPU Generation": cpu_data.CPUGen.coffee_lake.value, - "Max OS Supported": os_data.os_data.max_os, + "Max OS Supported": os_data.os_data.sequoia, "Wireless Model": device_probe.Broadcom.Chipsets.AppleBCMWLANBusInterfacePCIe, "Bluetooth Model": bluetooth_data.bluetooth_data.UART, "Screen Size": 13,