forked from lolo859/vystem
Vystem 0.2
This commit is contained in:
@@ -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
|
||||
24
Blastproof/config/config.json
Normal file
24
Blastproof/config/config.json
Normal 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
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
8
Blastproof/config/config_patch.sh
Executable file
8
Blastproof/config/config_patch.sh
Executable 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
|
||||
Reference in New Issue
Block a user