]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
bootm: Make cmdline optional with bootm_boot_start()
authorSimon Glass <sjg@chromium.org>
Fri, 15 Dec 2023 04:19:05 +0000 (21:19 -0700)
committerTom Rini <trini@konsulko.com>
Wed, 10 Apr 2024 23:04:25 +0000 (17:04 -0600)
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>
include/bootm.h

index f5229ea90b3398e3406da9d52891d92e536e5a13..1e232e08d458e223c15e2475fd296c3fb290cb88 100644 (file)
@@ -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);