diff options
| -rwxr-xr-x | resources/scripts/download/coreboot | 38 | 
1 files changed, 19 insertions, 19 deletions
| diff --git a/resources/scripts/download/coreboot b/resources/scripts/download/coreboot index f9f6bcbe..514e6f38 100755 --- a/resources/scripts/download/coreboot +++ b/resources/scripts/download/coreboot @@ -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 $@ | 
