]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
kernel-install: Log location that uki is installed in
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Sun, 5 Nov 2023 12:50:25 +0000 (13:50 +0100)
committerLuca Boccassi <luca.boccassi@gmail.com>
Sun, 5 Nov 2023 15:26:20 +0000 (15:26 +0000)
Let's log where we install a UKI when running in verbose mode.

src/kernel-install/90-uki-copy.install

index 6c71b211d7f4182aa8bfafeb46f5a1c095360b8c..c66c09719cac10857afb9632afa0d24c6fa4b34d 100755 (executable)
@@ -69,7 +69,7 @@ fi
 # If there is a UKI named uki.efi on the staging area use that, if not use what
 # was passed in as $KERNEL_IMAGE but insist it has a .efi extension
 if [ -f "$KERNEL_INSTALL_STAGING_AREA/uki.efi" ]; then
-    [ "$KERNEL_INSTALL_VERBOSE" -gt 0 ] && echo "Installing $KERNEL_INSTALL_STAGING_AREA/uki.efi"
+    [ "$KERNEL_INSTALL_VERBOSE" -gt 0 ] && echo "Installing $KERNEL_INSTALL_STAGING_AREA/uki.efi as $UKI_FILE"
     install -m 0644 "$KERNEL_INSTALL_STAGING_AREA/uki.efi" "$UKI_FILE" || {
         echo "Error: could not copy '$KERNEL_INSTALL_STAGING_AREA/uki.efi' to '$UKI_FILE'." >&2
         exit 1
@@ -83,7 +83,7 @@ elif [ -n "$KERNEL_IMAGE" ]; then
         echo "Error: $KERNEL_IMAGE is missing .efi suffix." >&2
         exit 1
     }
-    [ "$KERNEL_INSTALL_VERBOSE" -gt 0 ] && echo "Installing $KERNEL_IMAGE"
+    [ "$KERNEL_INSTALL_VERBOSE" -gt 0 ] && echo "Installing $KERNEL_IMAGE as $UKI_FILE"
     install -m 0644 "$KERNEL_IMAGE" "$UKI_FILE" || {
         echo "Error: could not copy '$KERNEL_IMAGE' to '$UKI_FILE'." >&2
         exit 1