diff options
author | madbehaviorus <mad.behaviorus@mailbox.org> | 2021-06-06 11:31:05 +0200 |
---|---|---|
committer | madbehaviorus <mad.behaviorus@mailbox.org> | 2021-06-06 11:31:05 +0200 |
commit | b152f3ae01e47792109bc4198315da53abc90087 (patch) | |
tree | 1aed63786b01c14c3b54dd6599e8a4cac085c7f8 /resources/scripts/build/payload | |
parent | 67e2365a6d4e70b3a62d95f9ebfd1de80683688e (diff) |
The tianocore build script fails, because there are no coreboot-version file are available. So I set it as commit and the script works like a charm
Diffstat (limited to 'resources/scripts/build/payload')
-rwxr-xr-x | resources/scripts/build/payload/tianocore | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/scripts/build/payload/tianocore b/resources/scripts/build/payload/tianocore index 2692edd3..f8bff805 100755 --- a/resources/scripts/build/payload/tianocore +++ b/resources/scripts/build/payload/tianocore @@ -35,7 +35,8 @@ fi if [ ! -d "coreboot/default/util/crossgcc/xgcc/i386-elf" ]; then ( - cat version coreboot/default/.coreboot-version + # cat version coreboot/default/.coreboot-version -> breaks the build process; this file is not available, at the moment + 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. |