]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
kernel-install: print entry-token path that was not found 37522/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 20 May 2025 12:41:15 +0000 (14:41 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 20 May 2025 12:41:33 +0000 (14:41 +0200)
src/kernel-install/kernel-install.c

index 4a743ac316f8475695d7ce39307268610631f7c3..73dcc37c91653d21b4b4e604eafe1290195737a7 100644 (file)
@@ -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;
 }