diff options
| author | Leah Rowe <leah@libreboot.org> | 2023-05-15 01:24:24 +0100 | 
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2023-05-15 01:25:08 +0100 | 
| commit | 56b80c0a4c806d97a3e6103378d03563c4164525 (patch) | |
| tree | 242b94c84069780b23cdc5f1d62c267b6fb6d739 | |
| parent | ee79d8ba95ae19cc8e99919d244a4ed108697518 (diff) | |
download/coreboot: rename function for clarity
| -rwxr-xr-x | resources/scripts/download/coreboot | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/resources/scripts/download/coreboot b/resources/scripts/download/coreboot index 72bd28d2..45af272a 100755 --- a/resources/scripts/download/coreboot +++ b/resources/scripts/download/coreboot @@ -61,14 +61,14 @@ fetch_coreboot_trees()  	fi  	for board in ${boards}; do  		rm -f resources/coreboot/*/seen -		download_for_board "${board}" +		download_coreboot_for_board "${board}"  		[ -f build_error ] && break  	done  	rm -f resources/coreboot/*/seen  } -download_for_board() +download_coreboot_for_board()  {  	_board="${1}"  	cbtree="undefined" | 
