diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-12-05 20:27:11 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-12-05 20:34:09 (EST) |
commit | 4f4ec55f08d55acadd6723a54db638bd5ef04484 (patch) | |
tree | 9056c144870951da8d4ded913ab7b585c1ce3726 /resources/scripts/helpers/build/roms/withdepthcharge | |
parent | c13fe7aad75a74096f0e8d090c282e254fd78108 (diff) | |
download | libreboot-4f4ec55f08d55acadd6723a54db638bd5ef04484.zip libreboot-4f4ec55f08d55acadd6723a54db638bd5ef04484.tar.gz libreboot-4f4ec55f08d55acadd6723a54db638bd5ef04484.tar.bz2 |
build/roms/*: put libreboot version in .coreboot-version file
This is one of the things needed, for building coreboot in a
reproducible fashion.
Diffstat (limited to 'resources/scripts/helpers/build/roms/withdepthcharge')
-rwxr-xr-x | resources/scripts/helpers/build/roms/withdepthcharge | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/roms/withdepthcharge b/resources/scripts/helpers/build/roms/withdepthcharge index 8ae80a7..03cda06 100755 --- a/resources/scripts/helpers/build/roms/withdepthcharge +++ b/resources/scripts/helpers/build/roms/withdepthcharge @@ -86,10 +86,11 @@ buildcoreboot() { version="$(cat ../version)" else # git repo is being used - version="$(git describe --tags HEAD)" + version="$(git describe --tags HEAD)" # note: in libreboot, coreboot/.git doesn't exist, this uses libreboot .git fi printf '%s\n' "${version}" > "lbversion" printf 'libreboot-%s' "${version}" > "ro-frid" + printf 'libreboot-%s\n' "${version}" > ".coreboot-version" # needed for reproducible builds in coreboot make KBUILD_DEFCONFIG="$(pwd)/../resources/libreboot/config/depthcharge/${board}/config" defconfig make -j"$(nproc)" |