From 78fdf56d3852b412c2bbb7d626f2b1ca9d9722e6 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Thu, 12 Feb 2026 09:06:19 +0100 Subject: [PATCH] pvimg: Improve long help message of the info subcommand MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Improve the long help message of the 'info' subcommand. Reviewed-by: Steffen Eiden Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- rust/pvimg/src/cli.rs | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/rust/pvimg/src/cli.rs b/rust/pvimg/src/cli.rs index b954d238..ac8bb822 100644 --- a/rust/pvimg/src/cli.rs +++ b/rust/pvimg/src/cli.rs @@ -587,8 +587,17 @@ pub enum SubCommands { /// Print information about the IBM Secure Execution image. /// - /// Note that the API and output format is experimental and subject to - /// change. + /// The 'info' subcommand extracts and displays information about an + /// existing IBM Secure Execution image, including information from the + /// Secure Execution header. By default, the header is displayed without + /// verifying its integrity and authenticity. Use '--hdr-key' to + /// authenticate and verify the header integrity. + /// + /// Output can be formatted as human-readable text or JSON. Use '--format' + /// to control the output format and level of detail. + /// + /// SECURITY NOTE: Without '--hdr-key', the displayed information is NOT + /// verified and should not be trusted. Info(InfoArgs), /// Test different aspects of an existing IBM Secure Execution image.