summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2021-05-22 20:28:06 +0100
committerLeah Rowe <leah@libreboot.org>2021-05-22 20:28:41 +0100
commit15e4b8a00caec6ee6a4df607ad93792575dbaac8 (patch)
tree84ec1f31328d2a87a74448d8987f39ab241cc07d
parent85ec4e0e08cd3ab38376d0b22593b40f106350ea (diff)
build/crossgcc: insert .coreboot-version
-rwxr-xr-xresources/scripts/build/boot/roms_helper1
-rwxr-xr-xresources/scripts/build/payload/tianocore1
2 files changed, 2 insertions, 0 deletions
diff --git a/resources/scripts/build/boot/roms_helper b/resources/scripts/build/boot/roms_helper
index f360878..46b65be 100755
--- a/resources/scripts/build/boot/roms_helper
+++ b/resources/scripts/build/boot/roms_helper
@@ -132,6 +132,7 @@ fi
if [ "${arch}" = "x86_32" ] || [ "${arch}" = "x86_64" ]; then
if [ ! -d "${cbdir}/util/crossgcc/xgcc/i386-elf/" ]; then
(
+ cat version > "${cbdir}/.coreboot-version"
cd "${cbdir}"
make crossgcc-i386 CPUS=$(nproc) # even for 64-bit machines, coreboot builds
# 32-bit ROM images, so we only need to worry about i386-elf
diff --git a/resources/scripts/build/payload/tianocore b/resources/scripts/build/payload/tianocore
index 3078621..e80230c 100755
--- a/resources/scripts/build/payload/tianocore
+++ b/resources/scripts/build/payload/tianocore
@@ -35,6 +35,7 @@ fi
if [ ! -d "coreboot/default/util/crossgcc/xgcc/i386-elf" ]; then
(
+ cat version coreboot/default/.coreboot-version
cd coreboot/default/
make crossgcc-i386 CPUS=$(nproc) # tianocore actually uses host gcc, which means
# right now you should be building this on a 64-bit x86 host.