summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xresources/scripts/helpers/download/coreboot9
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/scripts/helpers/download/coreboot b/resources/scripts/helpers/download/coreboot
index 7fee71d..2e1059b 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"