diff options
author | Michal Simek <michal.simek@xilinx.com> | 2015-01-15 09:53:13 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-01-29 13:38:42 -0500 |
commit | e3046ba4daa4a4e5b7aedd9a1aa3b8d72e5ad559 (patch) | |
tree | 46bf4ef5de3bb6cf6ad3773fcf53e84f2a0e8025 /common | |
parent | 2662179998e4f7c2c67f00527c3af5123816bd49 (diff) | |
download | u-boot-e3046ba4daa4a4e5b7aedd9a1aa3b8d72e5ad559.zip u-boot-e3046ba4daa4a4e5b7aedd9a1aa3b8d72e5ad559.tar.gz u-boot-e3046ba4daa4a4e5b7aedd9a1aa3b8d72e5ad559.tar.bz2 |
common: bootm: Document fake bootm sub-command
Fake option is enabled only when CONFIG_TRACE is
enabled in common/bootm.c:do_boot_states().
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_bootm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 6723360..48199bf 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -185,6 +185,9 @@ static char bootm_help_text[] = "\tcmdline - OS specific command line processing/setup\n" "\tbdt - OS specific bd_t processing\n" "\tprep - OS specific prep before relocation or go\n" +#if defined(CONFIG_TRACE) + "\tfake - OS specific fake start without go\n" +#endif "\tgo - start OS"; #endif |