Compare commits

...

3 Commits

Author SHA256 Message Date
e8d69f1fa1 V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m43s
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
2025-10-13 20:14:15 +01:00
fa95de278d Merge remote-tracking branch 'origin/master' 2025-10-13 20:09:49 +01:00
50c080c83f V8.00.000.2025.06.17
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
2025-10-13 20:09:39 +01:00
7 changed files with 12 additions and 13 deletions

View File

@@ -37,8 +37,6 @@ installation_kernel() {
chroot_script "${TARGET}" " chroot_script "${TARGET}" "
export INITRD=No export INITRD=No
apt-get install -y --no-install-recommends --no-install-suggests ${VAR_KERNEL} initramfs-tools 2>&1 | tee -a ${var_logfile} apt-get install -y --no-install-recommends --no-install-suggests ${VAR_KERNEL} initramfs-tools 2>&1 | tee -a ${var_logfile}
RC=( \${PIPESTATUS[@]} )
echo ExitCode of PIPESTATUS[0]: \${RC[0]} >> ${var_logfile}
" "
do_log "info" "file_only" "4120() Kernel image: '${VAR_KERNEL}' installed successfully." do_log "info" "file_only" "4120() Kernel image: '${VAR_KERNEL}' installed successfully."
@@ -50,8 +48,6 @@ installation_kernel() {
chroot_script "${TARGET}" " chroot_script "${TARGET}" "
export INITRD=No export INITRD=No
apt-get install -y --no-install-recommends --no-install-suggests ${image} initramfs-tools 2>&1 | tee -a ${var_logfile} apt-get install -y --no-install-recommends --no-install-suggests ${image} initramfs-tools 2>&1 | tee -a ${var_logfile}
RC=( \${PIPESTATUS[@]} )
echo ExitCode of PIPESTATUS[0]: \${RC[0]} >> ${var_logfile}
" "
do_log "info" "file_only" "4120() Kernel image: '${image}' installed successfully." do_log "info" "file_only" "4120() Kernel image: '${image}' installed successfully."
@@ -61,4 +57,7 @@ installation_kernel() {
fi fi
} }
### Prevents accidental 'unset -f'.
# shellcheck disable=SC2034
readonly -f installation_kernel
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh # vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh

View File

@@ -97,8 +97,6 @@ installation_toolset() {
chroot_script "${TARGET}" " chroot_script "${TARGET}" "
export INITRD=No export INITRD=No
apt-get install -y --no-install-recommends --no-install-suggests ${ary_unique_pkgs[*]} 2>&1 | tee -a ${var_logfile} apt-get install -y --no-install-recommends --no-install-suggests ${ary_unique_pkgs[*]} 2>&1 | tee -a ${var_logfile}
RC=( \${PIPESTATUS[@]} )
echo ExitCode of PIPESTATUS[0]: \${RC[0]} >> ${var_logfile}
" "
fi fi

View File

@@ -36,8 +36,6 @@ installation_systemd() {
chroot_script "${TARGET}" " chroot_script "${TARGET}" "
export INITRD=No export INITRD=No
apt-get install -y --no-install-recommends --no-install-suggests systemd systemd-sysv dbus 2>&1 | tee -a ${var_logfile} apt-get install -y --no-install-recommends --no-install-suggests systemd systemd-sysv dbus 2>&1 | tee -a ${var_logfile}
RC=( \${PIPESTATUS[@]} )
echo ExitCode of PIPESTATUS[0]: \${RC[0]} >> ${var_logfile}
" "
else else

View File

@@ -37,7 +37,6 @@ installation_kernel_reco() {
chroot_script "${RECOVERY}" ' chroot_script "${RECOVERY}" '
export INITRD=No export INITRD=No
apt-get install -y --no-install-recommends --no-install-suggests '"${VAR_KERNEL}"' initramfs-tools 2>&1 | tee -a '"${var_logfile}"' apt-get install -y --no-install-recommends --no-install-suggests '"${VAR_KERNEL}"' initramfs-tools 2>&1 | tee -a '"${var_logfile}"'
echo ExitCode: $? >> '"${var_logfile}"'
' '
do_log "info" "file_only" "5120() Kernel image: '${VAR_KERNEL}' installed successfully." do_log "info" "file_only" "5120() Kernel image: '${VAR_KERNEL}' installed successfully."
@@ -49,7 +48,6 @@ installation_kernel_reco() {
chroot_script "${RECOVERY}" " chroot_script "${RECOVERY}" "
export INITRD=No export INITRD=No
apt-get install -y --no-install-recommends --no-install-suggests ${image} initramfs-tools 2>&1 | tee -a ${var_logfile} apt-get install -y --no-install-recommends --no-install-suggests ${image} initramfs-tools 2>&1 | tee -a ${var_logfile}
echo ExitCode of PIPESTATUS[0]: \${PIPESTATUS[0]} >> ${var_logfile}
" "
do_log "info" "file_only" "5120() Kernel image: '${image}' installed successfully." do_log "info" "file_only" "5120() Kernel image: '${image}' installed successfully."

View File

@@ -96,8 +96,6 @@ installation_toolset_reco() {
chroot_script "${RECOVERY}" " chroot_script "${RECOVERY}" "
export INITRD=No export INITRD=No
apt-get install -y --no-install-recommends --no-install-suggests ${ary_unique_pkgs[*]} 2>&1 | tee -a ${var_logfile} apt-get install -y --no-install-recommends --no-install-suggests ${ary_unique_pkgs[*]} 2>&1 | tee -a ${var_logfile}
RC=( \${PIPESTATUS[@]} )
echo ExitCode of PIPESTATUS[0]: \${RC[0]} >> ${var_logfile}
" "
fi fi

View File

@@ -36,7 +36,6 @@ installation_systemd_reco() {
chroot_script "${RECOVERY}" " chroot_script "${RECOVERY}" "
export INITRD=No export INITRD=No
apt-get install -y --no-install-recommends --no-install-suggests systemd systemd-sysv dbus 2>&1 | tee -a ${var_logfile} apt-get install -y --no-install-recommends --no-install-suggests systemd systemd-sysv dbus 2>&1 | tee -a ${var_logfile}
echo ExitCode of PIPESTATUS[0]: \${PIPESTATUS[0]} >> ${var_logfile}
" "
else else

View File

@@ -126,6 +126,15 @@ certificatePolicies = @ciss_sb_policy
crlDistributionPoints = @ciss_sb_root_crl crlDistributionPoints = @ciss_sb_root_crl
nsComment = "UEFI Key-Exchange Key (KEK), RSA-3072, SHA-384" nsComment = "UEFI Key-Exchange Key (KEK), RSA-3072, SHA-384"
[ v3_db_CA ]
basicConstraints = critical, CA:true, pathlen:1
keyUsage = critical, digitalSignature, keyCertSign, cRLSign
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid,issuer
authorityInfoAccess = @ciss_sb_pki
certificatePolicies = @ciss_sb_policy
crlDistributionPoints = @ciss_sb_root_crl
nsComment = "UEFI db Trust Anchor (CA) for Image code-signers"
[ ciss_sb_pki ] [ ciss_sb_pki ]
caIssuers;URI.0 = https://ca.quantumsign.eu/ caIssuers;URI.0 = https://ca.quantumsign.eu/