From ab2a9c3709c64ec59e0a3750b0778652b00ab661 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 21 Jul 2024 07:39:47 +0100 Subject: include/rom.sh: use ccache when building coreboot ccache now required, in build dependencies Signed-off-by: Leah Rowe --- include/rom.sh | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include') diff --git a/include/rom.sh b/include/rom.sh index c0e5f8c5..4907cfab 100644 --- a/include/rom.sh +++ b/include/rom.sh @@ -23,11 +23,20 @@ mkpayload_grub() mkvendorfiles() { + [ -z "$mode" ] && $dry cook_coreboot_config check_cbfstool "$tree"; printf "69\n" > "$srcdir/.coreboot-version" \ || $err "!cbver $srcdir"; [ -z "$mode" ] && \ [ "$target" != "$tree" ] && x_ ./vendor download $target; return 0 } +cook_coreboot_config() +{ + [ -f "$srcdir/.config" ] || return 0 + printf "CONFIG_CCACHE=y\n" >> "$srcdir/.config" || \ + $err "$srcdir/.config: Could not enable ccache" + make -C "$srcdir" oldconfig || $err "Could not cook $srcdir/.config"; : +} + check_cbfstool() { [ "$badhash" = "n" ] || rm -f "elf/cbfstool/$1/cbfstool" || \ -- cgit v1.2.1