From 9b7497946a95cfab3629782d8f5db5593114bd11 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Wed, 19 May 2021 10:48:40 -0600 Subject: [PATCH] Update Constants.py --- Resources/Constants.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Resources/Constants.py b/Resources/Constants.py index 599b7e24b..9057ee400 100644 --- a/Resources/Constants.py +++ b/Resources/Constants.py @@ -126,7 +126,11 @@ class Constants: def opencore_zip_source(self): return self.payload_path / Path(f"OpenCore/OpenCore-{self.opencore_build}.zip") @property def plist_template(self): return self.payload_path / Path(f"Config/config.plist") - + + # Mount Location + @property + def payload_mnt1_path(self): return self.payload_path / Path("mnt1") + # ACPI @property def pci_ssdt_path(self): return self.payload_path / Path("ACPI/SSDT-CPBG.aml")