From 4092f72274d1b4d8212df559638327ff35ab011f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 20 May 2025 14:41:15 +0200 Subject: [PATCH] kernel-install: print entry-token path that was not found --- src/kernel-install/kernel-install.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/kernel-install/kernel-install.c b/src/kernel-install/kernel-install.c index 4a743ac316f..73dcc37c916 100644 --- a/src/kernel-install/kernel-install.c +++ b/src/kernel-install/kernel-install.c @@ -787,7 +787,9 @@ static int context_ensure_layout(Context *c) { /* There's no metadata in $BOOT_ROOT, and apparently no entry token directory installed? Then we * really don't know anything. */ c->layout = LAYOUT_OTHER; - log_debug("Entry-token directory not found, using layout=%s.", layout_to_string(c->layout)); + log_debug("Entry-token directory %s not found, using layout=%s.", + entry_token_path, + layout_to_string(c->layout)); return 0; } -- 2.47.3