Add support for RELEASE kexts

This commit is contained in:
Mykola Grymalyuk
2021-10-18 20:17:45 -06:00
parent cf2a58e6bf
commit f12028aa84
27 changed files with 17 additions and 11 deletions
+2
View File
@@ -46,8 +46,10 @@ class MenuOptions:
change_menu = input("Enable Kext DEBUG mode(y/n/q): ")
if change_menu in {"y", "Y", "yes", "Yes"}:
self.constants.kext_debug = True
self.constants.kext_variant = "DEBUG"
elif change_menu in {"n", "N", "no", "No"}:
self.constants.kext_debug = False
self.constants.kext_variant = "RELEASE"
elif change_menu in {"q", "Q", "Quit", "quit"}:
print("Returning to previous menu")
else: