download/u-boot: Re-add usage text for no-argument form

The no-argument form of the U-Boot download script prepare trees for all
boards when run with no arguments, like the corresponding script for
coreboot. The usage text for this case was removed without any changes
to the corresponding code, assume it was by mistake and add it back.

Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
fsdg20230625
Alper Nebi Yasak 2022-12-06 19:49:02 +03:00
parent 71cf7f9db1
commit 2b761f2f8a
1 changed files with 3 additions and 0 deletions

View File

@ -207,6 +207,9 @@ usage()
progname="./download u-boot" progname="./download u-boot"
printf "Usage:\n" printf "Usage:\n"
printf "\t%s # %s\n" \
"${progname}" \
"Download u-boot for all boards"
printf "\t%s [board] # %s\n" \ printf "\t%s [board] # %s\n" \
"${progname}" \ "${progname}" \
"Download u-boot for the given board" "Download u-boot for the given board"