Split building coreboot toolchains to a separate file

Specify dependencies specifically for building coreboot toolchains in
the file, so they are not conflated with the dependencies required for
building firmware-open.

Remove building the toolchain when building firmware, so that the new
script is the single source for building coreboot toolchains.

Signed-off-by: Tim Crawford <tcrawford@system76.com>
This commit is contained in:
Tim Crawford
2023-10-13 20:13:36 -06:00
committed by Jeremy Soller
parent 5fb1624187
commit b379c94b76
3 changed files with 65 additions and 22 deletions

View File

@@ -32,10 +32,6 @@ function check_configs() {
}
pushd coreboot >/dev/null
if [ ! -d util/crossgcc/xgcc ]
then
make CPUS="$(nproc)" crossgcc-i386
fi
make distclean
make defconfig KBUILD_DEFCONFIG="${CONFIG}"
check_configs "${CONFIG}"