From: Zbigniew Jędrzejewski-Szmek Date: Tue, 20 May 2025 12:41:15 +0000 (+0200) Subject: kernel-install: print entry-token path that was not found X-Git-Tag: v258-rc1~560^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F37522%2Fhead;p=thirdparty%2Fsystemd.git kernel-install: print entry-token path that was not found --- 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; }