From mboxrd@z Thu Jan 1 00:00:00 1970 From: AKASHI Takahiro Date: Wed, 30 Jan 2019 09:00:27 +0900 Subject: [U-Boot] [PATCH v6 6/7] cmd: efidebug: add images command In-Reply-To: References: <20190124110437.6837-1-takahiro.akashi@linaro.org> <20190124110437.6837-7-takahiro.akashi@linaro.org> Message-ID: <20190130000026.GU20286@linaro.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Tue, Jan 29, 2019 at 04:35:32PM +0100, Alexander Graf wrote: > On 01/24/2019 12:04 PM, AKASHI Takahiro wrote: > >"images" command prints loaded images-related information. > > > >Signed-off-by: AKASHI Takahiro > >--- > > cmd/efidebug.c | 14 +++++++++++++- > > 1 file changed, 13 insertions(+), 1 deletion(-) > > > >diff --git a/cmd/efidebug.c b/cmd/efidebug.c > >index a1852e8ea4b9..81ab3654f746 100644 > >--- a/cmd/efidebug.c > >+++ b/cmd/efidebug.c > >@@ -301,6 +301,14 @@ static int do_efi_show_handles(cmd_tbl_t *cmdtp, int flag, > > return CMD_RET_SUCCESS; > > } > >+static int do_efi_show_images(cmd_tbl_t *cmdtp, int flag, > >+ int argc, char * const argv[]) > >+{ > >+ efi_print_image_infos(NULL); > > Where does this function get defined? in efi_image_loader.c by Heinrich. -Takahiro Akashi > > Alex >