diff options
author | Alper Nebi Yasak <alpernebiyasak@gmail.com> | 2022-12-06 19:49:02 +0300 |
---|---|---|
committer | Alper Nebi Yasak <alpernebiyasak@gmail.com> | 2022-12-09 16:50:29 +0300 |
commit | 2b761f2f8a4193457a73c4dff335029f70b4443e (patch) | |
tree | f4183cbaddd2d9f8e369fdc361e490608962d153 /resources/scripts/download/u-boot | |
parent | 71cf7f9db16310935481ea772b2bf1eb26376f3b (diff) |
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>
Diffstat (limited to 'resources/scripts/download/u-boot')
-rwxr-xr-x | resources/scripts/download/u-boot | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/resources/scripts/download/u-boot b/resources/scripts/download/u-boot index 692f34bf..d388dd39 100755 --- a/resources/scripts/download/u-boot +++ b/resources/scripts/download/u-boot @@ -207,6 +207,9 @@ usage() progname="./download u-boot" printf "Usage:\n" + printf "\t%s # %s\n" \ + "${progname}" \ + "Download u-boot for all boards" printf "\t%s [board] # %s\n" \ "${progname}" \ "Download u-boot for the given board" |