diff options
author | Leah Rowe <leah@libreboot.org> | 2023-10-09 06:06:20 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-10-09 06:06:20 +0100 |
commit | 21db72b69549ae58f8bcfcd967d0756d90539347 (patch) | |
tree | 52481cfcad132b9c9951fe2fa27a844460cd09d1 /script/build/fw | |
parent | d1ba94ea0842c2e464f2c9177529de5319c8a33f (diff) |
disable 32-bit memtest86plus, only build 64-bit
some users reported build errors. technically, there's
nothing wrong with lbmk but it relies on hostcc, and
hostcc is hit or miss when it comes to cross compiling
32-bit, depending on the build system of whatever project.
lbmk needs to handle cross compilation. for now, i'm just
disabling memtest86plus on non-64-bit hosts.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/build/fw')
-rwxr-xr-x | script/build/fw/coreboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/build/fw/coreboot b/script/build/fw/coreboot index 091f9f0d..8efa39c3 100755 --- a/script/build/fw/coreboot +++ b/script/build/fw/coreboot @@ -130,7 +130,7 @@ prepare_target() build_dependency_seabios - memtest_bin="memtest86plus/build${arch#*_}/memtest.bin" + memtest_bin="memtest86plus/build64/memtest.bin" [ "${payload_memtest}" != "y" ] || [ -f "src/${memtest_bin}" ] || \ x_ ./update project trees -b memtest86plus |