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

blobutil/download: make more logic top-down

Basically, I really like OpenBSD coding style, and I want to
replicate this, somewhat, in shell scripts.
parent 1c2f9b54
Branches
Tags
No related merge requests found
......@@ -4,6 +4,7 @@
# SPDX-FileCopyrightText: 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com>
# SPDX-License-Identifier: GPL-3.0-only
needs=""
board="${1}"
# A shorthand for each board, to avoid duplicating configs per flash size
board_short=${board%%_*mb}
......@@ -57,6 +58,11 @@ done << EOF
$(eval "awk ' /\{.*${board_short}.*}{/ {flag=1;next} /\}/{flag=0} flag { print }' resources/blobs/sources")
EOF
Main() {
Build_deps
Download_needed
}
Fail(){
printf "\nERROR: $@\n"
exit 1
......@@ -140,5 +146,4 @@ Extract_me(){
printf "Truncated and cleaned me output to ${_me_destination}\n"
}
Build_deps
Download_needed
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