Skip to content
Snippets Groups Projects
Commit 7a6f40fc authored by Leah Rowe's avatar Leah Rowe
Browse files

download/coreboot: top-down re-ordering

main first

usage last
parent fd8b8084
Branches
No related merge requests found
......@@ -68,25 +68,6 @@ main()
exit 0
}
list_supported_boards()
{
for board in resources/coreboot/*; do
echo $board | sed 's#resources/coreboot/##'
done
}
usage()
{
progname="./download coreboot"
printf "Usage:\n"
printf "\t%s\t\t\t# Clone coreboot for all boards\n" "${progname}"
printf "\t%s [board [board] ...] # Clone coreboot for given boards\n" \
${progname}
printf "\t%s --list-boards\t# Prints this help\n" ${progname}
printf "\t%s --help\t\t# List supported boards\n" ${progname}
printf "\t%s --help\t\t# Prints this help\n" ${progname}
}
downloadfor() {
board="${1}"
......@@ -259,4 +240,23 @@ downloadfor() {
fi
}
usage()
{
progname="./download coreboot"
printf "Usage:\n"
printf "\t%s\t\t\t# Clone coreboot for all boards\n" "${progname}"
printf "\t%s [board [board] ...] # Clone coreboot for given boards\n" \
${progname}
printf "\t%s --list-boards\t# Prints this help\n" ${progname}
printf "\t%s --help\t\t# List supported boards\n" ${progname}
printf "\t%s --help\t\t# Prints this help\n" ${progname}
}
list_supported_boards()
{
for board in resources/coreboot/*; do
echo $board | sed 's#resources/coreboot/##'
done
}
main $@
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment