mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-21 06:30:52 +10:00
Add header to restructured build family files
This commit is contained in:
@@ -1,3 +1,6 @@
|
|||||||
|
# Class for handling Bluetooth Patches, invocation from build.py
|
||||||
|
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
||||||
|
|
||||||
from resources import constants, device_probe
|
from resources import constants, device_probe
|
||||||
from resources.build import support
|
from resources.build import support
|
||||||
from data import smbios_data, bluetooth_data
|
from data import smbios_data, bluetooth_data
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Commands for building the EFI and SMBIOS
|
# Class for generating OpenCore Configurations tailored for Macs
|
||||||
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
||||||
|
|
||||||
import copy
|
import copy
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
# Class for handling CPU and Firmware Patches, invocation from build.py
|
||||||
|
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
||||||
|
|
||||||
from resources import constants, generate_smbios
|
from resources import constants, generate_smbios
|
||||||
from resources.build import support
|
from resources.build import support
|
||||||
from data import smbios_data, cpu_data
|
from data import smbios_data, cpu_data
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
# Class for handling Graphics and Audio Patches, invocation from build.py
|
||||||
|
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
||||||
|
|
||||||
from resources import constants, device_probe, utilities
|
from resources import constants, device_probe, utilities
|
||||||
from resources.build import support
|
from resources.build import support
|
||||||
from data import smbios_data, model_array, os_data
|
from data import smbios_data, model_array, os_data
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
# Class for handling Misc Patches, invocation from build.py
|
||||||
|
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
||||||
|
|
||||||
from resources import constants, device_probe, generate_smbios
|
from resources import constants, device_probe, generate_smbios
|
||||||
from resources.build import support
|
from resources.build import support
|
||||||
@@ -223,4 +225,9 @@ class build_misc:
|
|||||||
|
|
||||||
if self.constants.oc_timeout != 5:
|
if self.constants.oc_timeout != 5:
|
||||||
print(f"- Setting custom OpenCore picker timeout to {self.constants.oc_timeout} seconds")
|
print(f"- Setting custom OpenCore picker timeout to {self.constants.oc_timeout} seconds")
|
||||||
self.config["Misc"]["Boot"]["Timeout"] = self.constants.oc_timeout
|
self.config["Misc"]["Boot"]["Timeout"] = self.constants.oc_timeout
|
||||||
|
|
||||||
|
if self.constants.vault is True:
|
||||||
|
print("- Setting Vault configuration")
|
||||||
|
self.config["Misc"]["Security"]["Vault"] = "Secure"
|
||||||
|
support.build_support(self.model, self.constants, self.config).get_efi_binary_by_path("OpenShell.efi", "Misc", "Tools")["Enabled"] = False
|
||||||
@@ -1,3 +1,6 @@
|
|||||||
|
# Class for handling Wired Networking Patches, invocation from build.py
|
||||||
|
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
||||||
|
|
||||||
from resources import constants, device_probe
|
from resources import constants, device_probe
|
||||||
from resources.build import support
|
from resources.build import support
|
||||||
from data import smbios_data, cpu_data
|
from data import smbios_data, cpu_data
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
# Class for handling Wireless Networking Patches, invocation from build.py
|
||||||
|
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
||||||
|
|
||||||
from resources import constants, device_probe, utilities
|
from resources import constants, device_probe, utilities
|
||||||
from resources.build import support
|
from resources.build import support
|
||||||
from data import smbios_data
|
from data import smbios_data
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
# Class for handling macOS Security Patches, invocation from build.py
|
||||||
|
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
||||||
|
|
||||||
from resources import constants, utilities
|
from resources import constants, utilities
|
||||||
from resources.build import support
|
from resources.build import support
|
||||||
@@ -15,11 +17,6 @@ class build_security:
|
|||||||
|
|
||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
if self.constants.vault is True:
|
|
||||||
print("- Setting Vault configuration")
|
|
||||||
self.config["Misc"]["Security"]["Vault"] = "Secure"
|
|
||||||
support.build_support(self.model, self.constants, self.config).get_efi_binary_by_path("OpenShell.efi", "Misc", "Tools")["Enabled"] = False
|
|
||||||
|
|
||||||
if self.constants.sip_status is False or self.constants.custom_sip_value:
|
if self.constants.sip_status is False or self.constants.custom_sip_value:
|
||||||
# Work-around 12.3 bug where Electron apps no longer launch with SIP lowered
|
# Work-around 12.3 bug where Electron apps no longer launch with SIP lowered
|
||||||
# Unknown whether this is intended behavior or not, revisit with 12.4
|
# Unknown whether this is intended behavior or not, revisit with 12.4
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
# Class for handling SMBIOS Patches, invocation from build.py
|
||||||
|
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
||||||
|
|
||||||
from resources import constants, utilities, generate_smbios
|
from resources import constants, utilities, generate_smbios
|
||||||
from resources.build import support
|
from resources.build import support
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
# Class for handling Storage Controller Patches, invocation from build.py
|
||||||
|
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
||||||
|
|
||||||
from resources import constants, device_probe, utilities
|
from resources import constants, device_probe, utilities
|
||||||
from resources.build import support
|
from resources.build import support
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
# Support files for build
|
# Utility class for build functions
|
||||||
|
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
|
||||||
|
|
||||||
from resources import constants, utilities
|
from resources import constants, utilities
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user