From 1cbbcc0b18dd8c8a52c8a3295e742ad3850f5200 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 15 Dec 2025 22:58:44 +0100 Subject: [PATCH] MT#63155 efi_support: do not rely on presence of einfo function The einfo() function is available via /etc/grml/lsb-functions, which we don't source in our deployment.sh. Fixes: Creating partition table /tmp/netscript.grml: line 357: einfo: command not found Thanks: Volodymyr Fedorov for reporting Change-Id: Ifc1d06fa8c7f64db502054c501c12e0d8b122dd5 --- templates/scripts/includes/deployment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/scripts/includes/deployment.sh b/templates/scripts/includes/deployment.sh index 0beea4a..6c7b6dd 100755 --- a/templates/scripts/includes/deployment.sh +++ b/templates/scripts/includes/deployment.sh @@ -354,7 +354,7 @@ efi_support() { modprobe efivarfs &>/dev/null || true if [ -d /sys/firmware/efi ] ; then - einfo "EFI support detected." + echo "EFI support detected." return 0 fi