summaryrefslogtreecommitdiff
path: root/cmd/bootm.c
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2023-10-07 15:13:08 -0400
committerTom Rini <[email protected]>2023-10-16 10:24:58 -0400
commit3616218b5acea74011aea2d14aa1f6366f242849 (patch)
treeccf5fd9d448069e418752519909c8333d66ee0e0 /cmd/bootm.c
parentdec5777fffcc6f9e97a20bc23fc7353b30b70ed5 (diff)
cmd: Convert existing long help messages to the new macro
- Generally we just drop the #ifdef CONFIG_SYS_LONGHELP and endif lines and use U_BOOT_LONGHELP to declare the same variable name as before - In a few places, either rename the variable to follow convention or introduce the variable as it was being done inline before. Signed-off-by: Tom Rini <[email protected]> Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'cmd/bootm.c')
-rw-r--r--cmd/bootm.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/cmd/bootm.c b/cmd/bootm.c
index 7968415b6d1..3e504ccfe81 100644
--- a/cmd/bootm.c
+++ b/cmd/bootm.c
@@ -168,8 +168,7 @@ int bootm_maybe_autostart(struct cmd_tbl *cmdtp, const char *cmd)
return 0;
}
-#ifdef CONFIG_SYS_LONGHELP
-static char bootm_help_text[] =
+U_BOOT_LONGHELP(bootm,
"[addr [arg ...]]\n - boot application image stored in memory\n"
"\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
"\t'arg' can be the address of an initrd image\n"
@@ -208,8 +207,7 @@ static char bootm_help_text[] =
#if defined(CONFIG_TRACE)
"\tfake - OS specific fake start without go\n"
#endif
- "\tgo - start OS";
-#endif
+ "\tgo - start OS");
U_BOOT_CMD(
bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,