aboutsummaryrefslogtreecommitdiff
path: root/include/bootm.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-12-14 21:19:05 -0700
committerTom Rini <trini@konsulko.com>2024-04-10 17:04:25 -0600
commit26736347bf75bb6a70c0d78a71de37203b75dd2a (patch)
treec464d81a16ff7d97ea7aefab30e8dbaf2cdf707c /include/bootm.h
parent637425bab338c1aa7b83f68068dbf5ad398d53af (diff)
downloadu-boot-26736347bf75bb6a70c0d78a71de37203b75dd2a.zip
u-boot-26736347bf75bb6a70c0d78a71de37203b75dd2a.tar.gz
u-boot-26736347bf75bb6a70c0d78a71de37203b75dd2a.tar.bz2
bootm: Make cmdline optional with bootm_boot_start()
Allow the default command line to be used when booting the OS. This is needed by fastboot. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/bootm.h')
-rw-r--r--include/bootm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bootm.h b/include/bootm.h
index f5229ea..1e232e0 100644
--- a/include/bootm.h
+++ b/include/bootm.h
@@ -198,7 +198,7 @@ void zimage_dump(struct boot_params *base_ptr, bool show_cmdline);
* bootm_boot_start() - Boot an image at the given address
*
* @addr: Image address
- * @cmdline: Command line to set
+ * @cmdline: Command line to set, NULL for default
*/
int bootm_boot_start(ulong addr, const char *cmdline);