Initial Commit

This commit is contained in:
Mykola Grymalyuk
2022-04-11 16:11:33 -06:00
parent 74e523633d
commit d7788540d9
13 changed files with 1122 additions and 18 deletions
+4 -1
View File
@@ -1,5 +1,5 @@
import sys
from resources import defaults, build, utilities, validation, sys_patch
from resources import defaults, build, utilities, validation, sys_patch, sys_patch_auto
from data import model_array
# Generic building args
@@ -105,3 +105,6 @@ If you plan to create the USB for another machine, please select the "Change Mod
elif self.args.unpatch_sys_vol:
print("- Set System Volume unpatching")
sys_patch.PatchSysVolume(settings.custom_model or settings.computer.real_model, settings, None).start_unpatch()
elif self.args.auto_patch:
print("- Set Auto patching")
sys_patch_auto.AutomaticSysPatch.start_auto_patch(settings)