From d3559539ef71b8c0de07344838ea0cd0cd705c76 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Sun, 29 Sep 2024 05:15:05 +0700 Subject: [PATCH] OcBinaryData has been added previously to OpenCore EFI --- Scripts/efi_builder.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Scripts/efi_builder.py b/Scripts/efi_builder.py index 8707d55..e2caec6 100644 --- a/Scripts/efi_builder.py +++ b/Scripts/efi_builder.py @@ -13,7 +13,6 @@ class builder: self.config = config_prodigy.ConfigProdigy() self.kext = kext_maestro.KextMaestro() self.utils = utils.Utils() - self.oc_binary_data_dir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), "OcBinaryData") self.intel_igpu_properties = { "Ice Lake": { "Laptop": { @@ -307,7 +306,6 @@ class builder: source_efi_dir = os.path.join(self.kext.ock_files_dir, "OpenCore") shutil.copytree(source_efi_dir, efi_directory, dirs_exist_ok=True) - shutil.copytree(self.oc_binary_data_dir, os.path.join(efi_directory, "EFI", "OC"), dirs_exist_ok=True) hardware_shorc = {} hardware_shorc["Motherboard Name"] = hardware["Motherboard"].get("Motherboard Name").upper()