Vystem 0.2

This commit is contained in:
2026-05-27 19:34:54 +02:00
parent a43c08b893
commit d238606b75
372 changed files with 51320 additions and 83217 deletions

81
Blastproof/edk2.json Normal file
View File

@@ -0,0 +1,81 @@
{
"version":"0.1",
"root_folder":"%rootcallerfolder%",
"run_context":"sub",
"name":"EDK2 setup",
"actions":[
{
"action":"run_command_wait",
"args":{
"command_variables":false,
"command":[
"git",
"clone",
"https://github.com/tianocore/edk2.git"
],
"show_output":"live",
"success_status":[
0
],
"ignore_success_status":false
}
},
{
"action":"run_command_wait_dir",
"args":{
"command_variables":false,
"command":[
"git",
"submodule",
"update",
"--init",
"--recursive",
"--progress"
],
"show_output":"live",
"success_status":[
0
],
"ignore_success_status":false,
"working_dir_variables":true,
"working_dir":"%rootcallerfolder%/$EDK2_DIR$"
}
},
{
"action":"run_command_wait_dir",
"args":{
"command_variables":false,
"command":[
"make",
"-C",
"BaseTools/"
],
"show_output":"live",
"success_status":[
0
],
"ignore_success_status":false,
"working_dir_variables":true,
"working_dir":"%rootcallerfolder%/$EDK2_DIR$"
}
},
{
"action":"run_command_wait_dir",
"args":{
"command_variables":false,
"command":[
"bash",
"-c",
"../Blastproof/ovmf.sh"
],
"show_output":"live",
"success_status":[
0
],
"ignore_success_status":false,
"working_dir_variables":true,
"working_dir":"%rootcallerfolder%/$EDK2_DIR$"
}
}
]
}