diff options
author | Leah Rowe <leah@libreboot.org> | 2022-11-14 00:51:12 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2022-11-14 00:51:12 +0000 |
commit | 7af9953463c65fe2f02704e6bce815d830e58d7d (patch) | |
tree | dce6c19484fd27288c65ac33092040601d8a0622 /resources/scripts/download/flashrom | |
parent | b5c25efed46f0a9121023997c6758eda5c3f5017 (diff) |
pragmatic system distribution guideline compliancepsdg
osboot is now part of libreboot, and will soon shut down.
libreboot now conforms to osboot policy.
Diffstat (limited to 'resources/scripts/download/flashrom')
-rwxr-xr-x | resources/scripts/download/flashrom | 48 |
1 files changed, 3 insertions, 45 deletions
diff --git a/resources/scripts/download/flashrom b/resources/scripts/download/flashrom index c297247c..8a4cf829 100755 --- a/resources/scripts/download/flashrom +++ b/resources/scripts/download/flashrom @@ -18,51 +18,9 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # +. .revisions + [ "x${DEBUG+set}" = 'xset' ] && set -v set -u -e -usage() -{ - progname="./download flashrom" - printf "Usage:\n" - printf "\t%s # %s\n" \ - "${progname}" \ - "Download flashrom" - printf "\t%s --help # %s\n" \ - "${progname}" \ - "Prints this help" -} - -if [ $# -ne 0 ] ; then - usage - exit 0 -fi - -# Get flashrom at the last previously tested revision - -# Remove the old version that may still exist: -# ------------------------------------------------------------------------------ - -printf "Downloading flashrom\n" - -rm -Rf "flashrom/" - -# Get flashrom -# ------------------------------------------------------------------------------ - -# download it using git -git clone https://review.coreboot.org/flashrom.git - -if [ ! -d "flashrom" ]; then - printf "flashrom not downloaded; check network connection?\n\n" - exit 1 -fi - -( -cd "flashrom/" - -# reset to known revision -git reset --hard 11680db4e1251eb842bee11e53b6d1f0ae67767b -) - -printf "\n\n" +./download gitmodule flashrom |