diff options
author | Leah Rowe <leah@libreboot.org> | 2021-05-22 20:28:06 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2021-05-22 20:28:41 +0100 |
commit | 15e4b8a00caec6ee6a4df607ad93792575dbaac8 (patch) | |
tree | 84ec1f31328d2a87a74448d8987f39ab241cc07d /resources/scripts | |
parent | 85ec4e0e08cd3ab38376d0b22593b40f106350ea (diff) |
build/crossgcc: insert .coreboot-version
Diffstat (limited to 'resources/scripts')
-rwxr-xr-x | resources/scripts/build/boot/roms_helper | 1 | ||||
-rwxr-xr-x | resources/scripts/build/payload/tianocore | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/resources/scripts/build/boot/roms_helper b/resources/scripts/build/boot/roms_helper index f3608780..46b65be5 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 30786216..e80230c7 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. |