diff options
author | Leah Rowe <leah@libreboot.org> | 2022-02-19 12:38:48 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2022-02-19 12:38:48 +0000 |
commit | fd41399961d81cfda997cb580957650b6ea5e9c3 (patch) | |
tree | 2edd48f32872f646d2d783816bb479db84e3614f /resources/scripts/download/memtest86plus | |
parent | cceffff659452daca0c1cd05d5bf981551dbee9c (diff) | |
parent | 8833be159bfff1c417a7459dec323384bcbcb4d0 (diff) |
Merge branch 'master' of GNUtoo/lbmk into master
Diffstat (limited to 'resources/scripts/download/memtest86plus')
-rwxr-xr-x | resources/scripts/download/memtest86plus | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/resources/scripts/download/memtest86plus b/resources/scripts/download/memtest86plus index 1b3da822..c0897c80 100755 --- a/resources/scripts/download/memtest86plus +++ b/resources/scripts/download/memtest86plus @@ -23,6 +23,23 @@ [ "x${DEBUG+set}" = 'xset' ] && set -v set -u -e +usage() +{ + progname="./download memtest86plus" + printf "Usage:\n" + printf "\t%s # %s\n" \ + "${progname}" \ + "Download MemTest86+" + printf "\t%s --help # %s\n" \ + "${progname}" \ + "Prints this help" +} + +if [ $# -ne 0 ] ; then + usage + exit 0 +fi + # Get the last version of MemTest86+ used, apply patches, build it. # Remove the old version that may exist |