Merge pull request 'Cache downloads based on checksum' (#81) from Riku_V/lbmk:dl_cache into master

Reviewed-on: https://codeberg.org/libreboot/lbmk/pulls/81
This commit is contained in:
Leah Rowe 2023-06-19 22:17:19 +00:00
commit 051f928fd2
2 changed files with 5 additions and 2 deletions

2
.gitignore vendored
View File

@ -39,7 +39,7 @@
/version
/versiondate
/blobs/app/
/blobs/vendorupdate
/blobs/cache/
*me.bin
/mrc/
/util/nvmutil/nvm

View File

@ -11,6 +11,7 @@ ec_hash=""
dl_hash=""
dl_url=""
dl_url_bkup=""
dl_path=""
e6400_vga_dl_hash=""
e6400_vga_dl_url=""
e6400_vga_dl_url_bkup=""
@ -21,7 +22,6 @@ cbdir="coreboot/default"
cbcfgsdir="resources/coreboot"
boarddir=""
blobdir="blobs"
dl_path="${blobdir}/vendorupdate"
appdir="${blobdir}/app"
_7ztest="a"
mecleaner="$(pwd)/me_cleaner/me_cleaner.py"
@ -431,6 +431,9 @@ fetch_update()
return 1
fi
dl_path=${blobdir}/cache/${dlsum}
mkdir -p ${blobdir}/cache
vendor_checksum ${dlsum} || \
wget ${dl} -O ${dl_path} || wget ${dl_bkup} -O ${dl_path}