move download/gitmodule script to root directory
this fixes the build error: Error: name not set Usage: ./download gitmodule [name] when running: ./download all running "all" runs all scripts under downloads, one of which was the gitmodule script itself, therefore being run without argumentfsdg20230625
parent
59540530bc
commit
a942bd6590
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
Print_help(){
|
Print_help(){
|
||||||
cat <<- EOF
|
cat <<- EOF
|
||||||
Usage: ./download gitmodule [name]
|
Usage: ./gitclone [name]
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
name: The name of the module as specified in resources/git/revisions file
|
name: The name of the module as specified in resources/git/revisions file
|
|
@ -3,7 +3,7 @@
|
||||||
# Project name is enclosed by curly braces '{}' information about the
|
# Project name is enclosed by curly braces '{}' information about the
|
||||||
# project relevant to osbmk is stored between the subsequent curly
|
# project relevant to osbmk is stored between the subsequent curly
|
||||||
# braces. This file is used by the gitcheck script as well as the
|
# braces. This file is used by the gitcheck script as well as the
|
||||||
# gitmodule script. Each entry must include: revision 'rev', location
|
# gitclone script. Each entry must include: revision 'rev', location
|
||||||
# 'loc', and the git url 'url'. Bkup_url is optional.
|
# 'loc', and the git url 'url'. Bkup_url is optional.
|
||||||
|
|
||||||
{grub}{
|
{grub}{
|
||||||
|
|
|
@ -21,4 +21,4 @@
|
||||||
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
||||||
set -u -e
|
set -u -e
|
||||||
|
|
||||||
./download gitmodule flashrom
|
./gitclone flashrom
|
||||||
|
|
|
@ -21,5 +21,5 @@
|
||||||
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
||||||
set -u -e
|
set -u -e
|
||||||
|
|
||||||
./download gitmodule grub
|
./gitclone grub
|
||||||
./download gitmodule gnulib
|
./gitclone gnulib
|
||||||
|
|
|
@ -22,4 +22,4 @@
|
||||||
set -u -e
|
set -u -e
|
||||||
|
|
||||||
printf "Downloading ich9utils\n"
|
printf "Downloading ich9utils\n"
|
||||||
./download gitmodule ich9utils
|
./gitclone ich9utils
|
||||||
|
|
|
@ -22,4 +22,4 @@
|
||||||
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
||||||
set -u -e
|
set -u -e
|
||||||
|
|
||||||
./download gitmodule me_cleaner
|
./gitclone me_cleaner
|
||||||
|
|
|
@ -29,4 +29,4 @@ set -u -e
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
printf "Downloading MemTest86+\n"
|
printf "Downloading MemTest86+\n"
|
||||||
./download gitmodule memtest86plus
|
./gitclone memtest86plus
|
||||||
|
|
|
@ -26,4 +26,4 @@ set -u -e
|
||||||
|
|
||||||
printf "Downloading SeaBIOS\n"
|
printf "Downloading SeaBIOS\n"
|
||||||
|
|
||||||
./download gitmodule seabios
|
./gitclone seabios
|
||||||
|
|
Loading…
Reference in New Issue