diff --git a/cmd/boot.c b/cmd/boot.c index 1710b3aa89..b814c67d93 100644 --- a/cmd/boot.c +++ b/cmd/boot.c @@ -64,7 +64,7 @@ U_BOOT_CMD( " passing 'arg' as arguments" ); -U_BOOT_CMD( +U_BOOT_CMD_ALWAYS( rbrom, 1, 0, do_reboot_brom, "Perform RESET of the CPU", "" diff --git a/cmd/bootfit.c b/cmd/bootfit.c index 4c0890aa7e..bffbbb4374 100644 --- a/cmd/bootfit.c +++ b/cmd/bootfit.c @@ -113,7 +113,7 @@ out: return CMD_RET_FAILURE; } -U_BOOT_CMD( +U_BOOT_CMD_ALWAYS( boot_fit, 2, 1, do_boot_fit, "Boot FIT Image from memory or boot/recovery partition", "boot_fit [addr]" diff --git a/cmd/download.c b/cmd/download.c index 232c474977..601e6c6558 100644 --- a/cmd/download.c +++ b/cmd/download.c @@ -21,7 +21,7 @@ static int do_download(cmd_tbl_t *cmdtp, int flag, return 0; } -U_BOOT_CMD( +U_BOOT_CMD_ALWAYS( download, 1, 1, do_download, "enter rockusb/bootrom download mode", "" );