download/coreboot: consistent tab indentation
parent
1388cccbc7
commit
8b4c1c1652
|
@ -34,21 +34,21 @@ usage()
|
||||||
{
|
{
|
||||||
progname="./download coreboot"
|
progname="./download coreboot"
|
||||||
printf "Usage:\n"
|
printf "Usage:\n"
|
||||||
printf "\t%s # %s\n" \
|
printf "\t%s\t\t\t# %s\n" \
|
||||||
"${progname}" \
|
"${progname}" \
|
||||||
"Download coreboot for all the boards"
|
"Download coreboot for all the boards"
|
||||||
printf "\t%s [board [board] ...] # %s\n" \
|
printf "\t%s [board [board] ...] # %s\n" \
|
||||||
"${progname}" \
|
"${progname}" \
|
||||||
"Download coreboot for the given boards"
|
"Download coreboot for the given boards"
|
||||||
printf "\t%s --list-boards # %s\n" \
|
printf "\t%s --list-boards\t# %s\n" \
|
||||||
"${progname}" \
|
"${progname}" \
|
||||||
"Prints this help"
|
"Prints this help"
|
||||||
printf "\t%s --help # %s\n" \
|
printf "\t%s --help\t\t# %s\n" \
|
||||||
"${progname}" \
|
"${progname}" \
|
||||||
"List supported boards"
|
"List supported boards"
|
||||||
printf "\t%s --help # %s\n" \
|
printf "\t%s --help\t\t# %s\n" \
|
||||||
"${progname}" \
|
"${progname}" \
|
||||||
"Prints this help"
|
"Prints this help"
|
||||||
}
|
}
|
||||||
|
|
||||||
# In this script, set -u is used to check for undefined variables, and
|
# In this script, set -u is used to check for undefined variables, and
|
||||||
|
@ -197,7 +197,7 @@ downloadfor() {
|
||||||
# extra.sh on a per-board basis
|
# extra.sh on a per-board basis
|
||||||
# In fact, extra.sh can be used for anything you want.
|
# In fact, extra.sh can be used for anything you want.
|
||||||
if [ -f "../../resources/coreboot/${board}/extra.sh" ]; then
|
if [ -f "../../resources/coreboot/${board}/extra.sh" ]; then
|
||||||
"../../resources/coreboot/${board}/extra.sh" || touch ../../build_error
|
"../../resources/coreboot/${board}/extra.sh" || touch ../../build_error
|
||||||
if [ -f ../../build_error ]; then
|
if [ -f ../../build_error ]; then
|
||||||
cd ../../; return 1
|
cd ../../; return 1
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue