From df53dc4844001d93ac82ea754f01af5542646ffde5eafe474be9cd444cebbc88 Mon Sep 17 00:00:00 2001 From: "Marc S. Weidner" Date: Thu, 13 Nov 2025 07:25:19 +0100 Subject: [PATCH] V8.13.408.2025.11.13 Signed-off-by: Marc S. Weidner --- config/hooks/live/zzzz_ciss_crypt_squash.hook.binary | 4 ++-- .../usr/lib/live/boot/0024-ciss-crypt-squash | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/hooks/live/zzzz_ciss_crypt_squash.hook.binary b/config/hooks/live/zzzz_ciss_crypt_squash.hook.binary index 7e57627..8c60a92 100644 --- a/config/hooks/live/zzzz_ciss_crypt_squash.hook.binary +++ b/config/hooks/live/zzzz_ciss_crypt_squash.hook.binary @@ -37,7 +37,7 @@ preallocate() { else - printf "\e[93m++++ ++++ ++++ ++++ ++++ ++++ ++ ⚠️ [fallocate -l %s -- %s] NOT successful. \e[0m\n" "${size}" "${file}" + printf "\e[91m++++ ++++ ++++ ++++ ++++ ++++ ++ ❌ [fallocate -l %s -- %s] NOT successful. \e[0m\n" "${size}" "${file}" fi @@ -48,7 +48,7 @@ preallocate() { else - printf "\e[93m++++ ++++ ++++ ++++ ++++ ++++ ++ ⚠️ [dd if=/dev/zero of=%s bs=%s count=%s status=progress conv=fsync ] NOT successful. \e[0m\n" "${file}" "${blocksize}" "${blockcounter}" + printf "\e[91m++++ ++++ ++++ ++++ ++++ ++++ ++ ❌ [dd if=/dev/zero of=%s bs=%s count=%s status=progress conv=fsync ] NOT successful. \e[0m\n" "${file}" "${blocksize}" "${blockcounter}" return 42 fi diff --git a/config/includes.chroot/usr/lib/live/boot/0024-ciss-crypt-squash b/config/includes.chroot/usr/lib/live/boot/0024-ciss-crypt-squash index f0bf695..b21997f 100644 --- a/config/includes.chroot/usr/lib/live/boot/0024-ciss-crypt-squash +++ b/config/includes.chroot/usr/lib/live/boot/0024-ciss-crypt-squash @@ -111,7 +111,7 @@ fi if ! mountpoint -q "${MNT_MEDIUM}"; then - log "no live medium mounted – defer to default live-boot path" + log "No live medium mounted, defer to default live-boot path." exit 0 fi @@ -119,7 +119,7 @@ fi ### Locate the encrypted root container on the medium. ------------------------------------------------------------------------- if [ ! -f "${MNT_MEDIUM}/${CDLB_LUKS_FS}" ]; then - log "encrypted root not found at ${MNT_MEDIUM}/${CDLB_LUKS_FS}" + log "Encrypted root not found at: [${MNT_MEDIUM}/${CDLB_LUKS_FS}]" exit 0 fi @@ -161,7 +161,7 @@ mount -r -t squashfs /dev/mapper/crypt_liveiso "${MNT_ROOTFS}" || { log "mount s ### Ensure live-boot keeps using our medium (bind-mount for consistency). ------------------------------------------------------ mount --bind "${MNT_MEDIUM}" "${MNT_MEDIUM}" 2>/dev/null || true -log "encrypted squashfs is mounted at ${MNT_ROOTFS} (device=/dev/mapper/crypt_liveiso)" +log "Encrypted squashfs is mounted at: [${MNT_ROOTFS}] (device=/dev/mapper/crypt_liveiso)" printf "\e[92m[INFO] Successfully applied: [/usr/lib/live/boot/0024-ciss-crypt-squash] \n\e[0m"