From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Murray Date: Wed, 31 Aug 2011 23:20:59 +0100 Subject: [U-Boot] [PATCH 5/7] Add bootgraph instrumentation for bootm command In-Reply-To: <1314829261-13996-1-git-send-email-amurray@theiet.org> References: <1314829261-13996-1-git-send-email-amurray@theiet.org> Message-ID: <1314829261-13996-6-git-send-email-amurray@theiet.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Under normal operation the bootm command will never return - this patch adds additional instrumentation to signal the 'end' of the bootm command such that this point can be reflected in any bootgraph SVG. Signed-off-by: Andrew Murray --- common/cmd_bootm.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 1966da4..147e8de 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -697,6 +697,7 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) arch_preboot_os(); + DO_INITCALL_END(do_bootm); boot_fn(0, argc, argv, &images); show_boot_progress (-9); -- 1.7.4.1