V8.00.000.2025.06.17

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-06-29 17:50:38 +02:00
parent cb1cbd731b
commit 4232245c6d
6 changed files with 83 additions and 66 deletions

View File

@@ -26,14 +26,17 @@ declare -girx ERR_INVALID_IPV6=244 # IPv6 validation failure.
declare -girx ERR_INVALID_PORT=243 # Port validation failure.
declare -girx ERR_ARG_MISMATCH=242 # The wrong number of optional arguments has been provided.
declare -girx ERR_PARTITIONTBL=241 # The partition table is not allowed.
declare -girx ERR_READ_PARTTBL=240 # The partition could not be deleted, created, or the UUID of the partition could not be read.
declare -girx ERR_BTRFS_INITPH=239 # The btrfs subvolume could not be initialized.
declare -girx ERR_BTRFS_SUBVOL=238 # The btrfs subvolume could not be created.
declare -girx ERR_BTRFS_OPTION=237 # Compression options algo:level not valid btrfs pairs.
declare -girx ERR_MOUNTING_DEV=236 # The Device could not be mounted.
declare -girx ERR_MOUNTING_ROOT=235 # The / Volume could not be mounted.
declare -girx ERR_MOUNTING_LUKS=234 # The LUKS Volume could not be mounted.
declare -girx ERR_UNKNOWN_DEV=233 # Unknown Device Path.
declare -girx ERR_TABLE_CREATE=240 # The partition table could not be created.
declare -girx ERR_TABLE_DELETE=239 # The partition table could not be deleted.
declare -girx ERR_PART_CREATE=238 # The partition could not be created.
declare -girx ERR_PART_READ=237 # The partition UUID could not be read.
declare -girx ERR_BTRFS_INITPH=236 # The btrfs subvolume could not be initialized.
declare -girx ERR_BTRFS_SUBVOL=235 # The btrfs subvolume could not be created.
declare -girx ERR_BTRFS_OPTION=234 # Compression options algo:level not valid btrfs pairs.
declare -girx ERR_MOUNTING_DEV=233 # The Device could not be mounted.
declare -girx ERR_MOUNTING_ROOT=232 # The / Volume could not be mounted.
declare -girx ERR_MOUNTING_LUKS=231 # The LUKS Volume could not be mounted.
declare -girx ERR_UNKNOWN_DEV=230 # Unknown Device Path.

View File

@@ -42,6 +42,7 @@ declare -grx VAR_PRESEED="${DIR_TMP}/combined.var"
### Base mount paths for debootstrap.
declare -grx TARGET="/target"
declare -grx RECOVERY="/recovery"
declare -grx VAR_SAFE_MNT_BASE="/run/ciss/bootstrap"
### Default log level.
declare -gx DEFAULT_LOG_LEVEL="info"