build: Implement NVGOP_GK.efi

Thanks @jazzzny
This commit is contained in:
Mykola Grymalyuk
2023-01-09 21:35:33 -07:00
parent ff0012e214
commit 6504442d4f
6 changed files with 59 additions and 15 deletions
+6 -1
View File
@@ -181,7 +181,8 @@ class Constants:
self.allow_ts2_accel = True # Set TeraScale 2 Acceleration support
self.force_nv_web = False # Force Nvidia Web Drivers on Tesla and Kepler
self.force_output_support = False # Force Output support for Mac Pros with PC VBIOS
self.gop_injection = False # Set GOP Injection support
self.amd_gop_injection = False # Set GOP Injection support
self.nvidia_kepler_gop_injection = False # Set Kepler GOP Injection support
## Miscellaneous
self.disallow_cpufriend = False # Disable CPUFriend
@@ -258,6 +259,10 @@ class Constants:
def amd_gop_driver_path(self):
return self.payload_path / Path("Drivers/AMDGOP.efi")
@property
def nvidia_kepler_gop_driver_path(self):
return self.payload_path / Path("Drivers/NVGOP_GK.efi")
@property
def xhci_driver_path(self):
return self.payload_path / Path("Drivers/XhciDxe.efi")