diff options
| author | Leah Rowe <leah@libreboot.org> | 2023-09-29 19:41:34 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2023-09-29 20:29:13 +0100 | 
| commit | 2b7ae8e204d06c91876351968939a6c187bfd239 (patch) | |
| tree | 1a8de0c735e33c4678fda9ba5e6dbc1fe52ad064 /include | |
| parent | 8ea62a16618ae66f062ff263288343b6ac3f8690 (diff) | |
blob scripts: unified handling of blob destination
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
| -rwxr-xr-x | include/blobutil.sh | 14 | ||||
| -rwxr-xr-x | include/mrc.sh | 4 | 
2 files changed, 10 insertions, 8 deletions
diff --git a/include/blobutil.sh b/include/blobutil.sh index 4cd3beea..3c55d20d 100755 --- a/include/blobutil.sh +++ b/include/blobutil.sh @@ -26,7 +26,7 @@ setvars="EC_url=\"\""  for x in EC_url_bkup EC_hash DL_hash DL_url DL_url_bkup E6400_VGA_DL_hash \      E6400_VGA_DL_url E6400_VGA_DL_url_bkup E6400_VGA_offset E6400_VGA_romname \      SCH5545EC_DL_url SCH5545EC_DL_url_bkup SCH5545EC_DL_hash MRC_url \ -    MRC_url_bkup MRC_hash MRC_board _me_destination; do +    MRC_url_bkup MRC_hash MRC_board _dest; do  	setvars="${setvars}; ${x}=\"\""  done @@ -61,23 +61,27 @@ fetch()  	dl_bkup="${3}"  	dlsum="${4}"  	dl_path="${5}" -	_fail="${6}" +	[ "${6# }" = "${6}" ] || err "fetch: space not allowed in _dest: '${6}'" +	[ "${6#/}" = "${6}" ] || err "fetch: absolute path not allowed: '${6}'" +	_dest="${6##*../}" -	mkdir -p "${dl_path%/*}" || "${_fail}" "fetch: !mkdir ${dl_path%/*}" +	mkdir -p "${dl_path%/*}" || err "fetch: !mkdir ${dl_path%/*}"  	dl_fail="y"  	vendor_checksum "${dlsum}" "${dl_path}" && dl_fail="n"  	for url in "${dl}" "${dl_bkup}"; do  		[ "${dl_fail}" = "n" ] && break  		[ -z "${url}" ] && continue -		rm -f "${dl_path}" || "${_fail}" "fetch: !rm -f ${dl_path}" +		rm -f "${dl_path}" || err "fetch: !rm -f ${dl_path}"  		wget --tries 3 -U "${agent}" "${url}" -O "${dl_path}" || \  		    continue  		vendor_checksum "${dlsum}" "${dl_path}" && dl_fail="n"  	done  	[ "${dl_fail}" = "y" ] && \ -		"${_fail}" "fetch ${dlsum}: matched file unavailable" +		err "fetch ${dlsum}: matched file unavailable" +	rm -Rf "${dl_path}_extracted" || err "!rm ${dl_path}_extracted" +	mkdirs "${_dest}" "extract_${dl_type}" || return 0  	eval "extract_${dl_type}"  } diff --git a/include/mrc.sh b/include/mrc.sh index b9345b92..21ce5f01 100755 --- a/include/mrc.sh +++ b/include/mrc.sh @@ -12,8 +12,6 @@ extract_mrc()  	_file="${MRC_url##*/}"  	_file="${_file%.zip}" -	_mrc_destination="${CONFIG_MRC_FILE#../../}" -	mkdirs "${_mrc_destination}" "extract_mrc" || return 0  	(  	cd "${appdir}" || err "extract_mrc: !cd ${appdir}" @@ -23,7 +21,7 @@ extract_mrc()  	)  	"${cbfstool}" "${appdir}/"coreboot-*.bin extract -n mrc.bin \ -	    -f "${_mrc_destination}" -r RO_SECTION || \ +	    -f "${_dest}" -r RO_SECTION || \  	    err "extract_mrc: could not fetch mrc.bin"  }  | 
