Make: Add supermicro/smcbiosinfo to tools
Build the smcbiosinfo tool with other tools. Fixes possible race condition on jenkins. Change-Id: I38f7ee2fdef2818ad685b3de53ad74f7da50600f Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38270 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Christian Walter <christian.walter@9elements.com> Reviewed-by: ron minnich <rminnich@gmail.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
6779d2352c
commit
a48e8f52d8
|
@ -641,7 +641,7 @@ install-git-commit-clangfmt:
|
|||
include util/crossgcc/Makefile.inc
|
||||
|
||||
.PHONY: tools
|
||||
tools: $(objutil)/kconfig/conf $(objutil)/kconfig/toada $(CBFSTOOL) $(objutil)/cbfstool/cbfs-compression-tool $(FMAPTOOL) $(RMODTOOL) $(IFWITOOL) $(objutil)/nvramtool/nvramtool $(objutil)/sconfig/sconfig $(IFDTOOL) $(CBOOTIMAGE) $(AMDFWTOOL) $(AMDCOMPRESS) $(FUTILITY) $(BINCFG) $(IFITTOOL)
|
||||
tools: $(objutil)/kconfig/conf $(objutil)/kconfig/toada $(CBFSTOOL) $(objutil)/cbfstool/cbfs-compression-tool $(FMAPTOOL) $(RMODTOOL) $(IFWITOOL) $(objutil)/nvramtool/nvramtool $(objutil)/sconfig/sconfig $(IFDTOOL) $(CBOOTIMAGE) $(AMDFWTOOL) $(AMDCOMPRESS) $(FUTILITY) $(BINCFG) $(IFITTOOL) $(objutil)/supermicro/smcbiosinfo
|
||||
|
||||
###########################################################################
|
||||
# Common recipes for all stages
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
ifeq ($(CONFIG_VENDOR_SUPERMICRO),y)
|
||||
ifneq ($(call strip_quotes, $(CONFIG_SUPERMICRO_BOARDID)),)
|
||||
|
||||
SMCBIOSINFOTOOL:= $(objutil)/supermicro/smcbiosinfo
|
||||
|
||||
$(SMCBIOSINFOTOOL): $(dir)/smcbiosinfo/smcbiosinfo.c
|
||||
|
@ -8,6 +5,9 @@ $(SMCBIOSINFOTOOL): $(dir)/smcbiosinfo/smcbiosinfo.c
|
|||
mkdir -p $(objutil)/supermicro
|
||||
$(HOSTCC) $< -o $@
|
||||
|
||||
ifeq ($(CONFIG_VENDOR_SUPERMICRO),y)
|
||||
ifneq ($(call strip_quotes, $(CONFIG_SUPERMICRO_BOARDID)),)
|
||||
|
||||
cbfs-files-y += smcbiosinfo.bin
|
||||
|
||||
smcbiosinfo.bin-file := $(obj)/mainboard/$(MAINBOARDDIR)/smcbiosinfo.bin
|
||||
|
|
Loading…
Reference in New Issue