From 7a6f40fcbf01607714b92cca025a40ec6798a055 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Mon, 15 May 2023 00:22:54 +0100 Subject: download/coreboot: top-down re-ordering main first usage last --- resources/scripts/download/coreboot | 38 ++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'resources') 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 $@ -- cgit v1.2.1