From: Daan De Meyer Date: Sun, 5 Nov 2023 12:50:25 +0000 (+0100) Subject: kernel-install: Log location that uki is installed in X-Git-Tag: v255-rc1~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4f5278eead35bc66cc943a493eab8a8b78174400;p=thirdparty%2Fsystemd.git kernel-install: Log location that uki is installed in Let's log where we install a UKI when running in verbose mode. --- diff --git a/src/kernel-install/90-uki-copy.install b/src/kernel-install/90-uki-copy.install index 6c71b211d7f..c66c09719ca 100755 --- a/src/kernel-install/90-uki-copy.install +++ b/src/kernel-install/90-uki-copy.install @@ -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