diff options
Diffstat (limited to 'resources/scripts/helpers')
-rwxr-xr-x | resources/scripts/helpers/download/coreboot | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/scripts/helpers/download/coreboot b/resources/scripts/helpers/download/coreboot index 7fee71dc..2e1059b3 100755 --- a/resources/scripts/helpers/download/coreboot +++ b/resources/scripts/helpers/download/coreboot @@ -155,4 +155,13 @@ cd "../" printf "Deblobbing coreboot\n" ./resources/utilities/coreboot-libre/deblob +if [ -f "version" ]; then + # _src release archive is being used + version="libreboot-$(cat version)" +else + # git repo is being used + version="libreboot-$(git describe --tags HEAD)" +fi +printf '%s\n' "${version}" >"coreboot/.coreboot-version" + printf "\n\n" |