build system: Structure and serialize INTERMEDIATE
Target added to INTERMEDIATE all operate on coreboot.pre, each modifying the file in some way. When running them in parallel, coreboot.pre can be read from and written to in parallel which can corrupt the result. Add a function to create those rules that also adds existing INTERMEDIATE targets to enforce an order (as established by evaluation order of Makefile.inc files). While at it, also add the addition to the PHONY target so we don't forget it. BUG=chromium:1154313, b:174585424 TEST=Built a configuration with SeaBIOS + SeaBIOS config files (ps2 timeout and sercon) and saw that they were executed. Change-Id: Ia5803806e6c33083dfe5dec8904a65c46436e756 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49358 Reviewed-by: Martin Roth <martinroth@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@@ -35,7 +35,7 @@ smm-y += mmap_boot.c
|
||||
# Check to ensure that no sections in the FMAP cross 16MiB boundary if
|
||||
# the platform supports split decode windows for BIOS region greater
|
||||
# than 16MiB.
|
||||
check-fmap-16mib-crossing: $(obj)/fmap_config.h
|
||||
$(call add_intermediate, check-fmap-16mib-crossing, $(obj)/fmap_config.h)
|
||||
flash_offset=$$(printf "%d" $$(cat $(obj)/fmap_config.h | grep "FMAP_SECTION_FLASH_START" | awk '{print $$NF}')); \
|
||||
for x in $$(cat $(obj)/fmap_config.h | grep "FMAP_TERMINAL_SECTIONS" | cut -d\" -f2); do \
|
||||
start=$$(printf "%d" $$(cat $(obj)/fmap_config.h | grep "FMAP_SECTION_"$$x"_START" | awk '{print $$NF}')); \
|
||||
@@ -46,9 +46,6 @@ check-fmap-16mib-crossing: $(obj)/fmap_config.h
|
||||
done; \
|
||||
if [ $$fail -eq 1 ]; then false; fi
|
||||
|
||||
PHONY+=check-fmap-16mib-crossing
|
||||
INTERMEDIATE+=check-fmap-16mib-crossing
|
||||
|
||||
CBFSTOOL_ADD_CMD_OPTIONS += --ext-win-base $(CONFIG_EXT_BIOS_WIN_BASE) --ext-win-size $(CONFIG_EXT_BIOS_WIN_SIZE)
|
||||
|
||||
endif # CONFIG_FAST_SPI_SUPPORTS_EXT_BIOS_WINDOW
|
||||
|
Reference in New Issue
Block a user