From 22091ceb67d3adb051b1ec85b21a384046bd46b9 Mon Sep 17 00:00:00 2001 From: Kroese Date: Tue, 28 Jul 2026 01:14:26 +0200 Subject: [PATCH] feat: Display message when BIOS boot image has an unexpected size (#2015) --- src/image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/image.sh b/src/image.sh index 914d8a4f..284fa5da 100644 --- a/src/image.sh +++ b/src/image.sh @@ -1159,7 +1159,7 @@ extractBootImage() { elif ! size=$(stat -c%s "$image"); then warn "Failed to determine the BIOS boot image size, $msg" elif (( size != expected_size )); then - enabled "$DEBUG" && warn "The extracted BIOS boot image has an unexpected size, $msg" + info "The extracted BIOS boot image has an unexpected size, $msg" else if ! mv -f "$image" "$dir/$ETFS"; then rm -rf "$tmp" || true