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

View File

@@ -1,3 +1,4 @@
# SPDX-License-Identifier: MPL-2.0
# Blastproof config
# WARNING : DO NOT PUT ANY NON-ASCII CHAR IN THIS FILE
@@ -11,7 +12,7 @@ serial_port_erroring=true
# Graphics
# Define the font to use
font=bitra-ascii-medium.fbm
font=FONT.FBM
# Define whether or not the boot animation should be played
disable_boot_animation=true
# Set the following both to 0 use highest resolution available
@@ -46,3 +47,5 @@ kernel_log_disable_serial_port=false
kernel_disable_serial_port=false
# Define the size of the ring buffer for logging information. Value is in 4KB pages, ranging from 0 (ring logging disabled) to 65535
kernel_log_ring_size=2048
# Define the amount of keyboards events each keyboard events queue can hold (ranging from 64 to 65535)
kernel_kbd_events_queue_capacity=256

View File

@@ -0,0 +1,24 @@
{
"version":"0.1",
"root_folder":"%filefolder%",
"run_context":"sub",
"name":"Blastproof configuration patching",
"actions":[
{
"action":"run_command_wait",
"args":{
"command_variables":true,
"command":[
"./config_patch.sh",
"$INITFS_UNIQUE_UUID$",
"$SIGNSYST_UNIQUE_UUID$"
],
"show_output":"on_failure",
"success_status":[
0
],
"ignore_success_status":false
}
}
]
}

View File

@@ -0,0 +1,8 @@
rm -f bp.conf
INITFS_TYPE_GUID="8362b434-d825-11f0-a68f-10ffe08423a6"
SIGNSYST_TYPE_GUID="da0048b4-d826-11f0-b877-10ffe08423a6"
INITFS_GUID=$1
SIGNSYST_GUID=$2
cp bp_template.cfg bp.cfg
sed -i -E "s/=(UUID_GENERATION_NEEDED_INITFS)/=$INITFS_GUID/" bp.cfg
sed -i -E "s/=(UUID_GENERATION_NEEDED_SIGNSYST)/=$SIGNSYST_GUID/" bp.cfg