diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2021-07-06 16:27:32 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-07-07 14:50:54 +0000 |
commit | e3c03d7f33b9f692d005c1309b3f713e33a130e4 (patch) | |
tree | c33e0d3e78d237d71c14d3cf5b7b5930de4d2d81 /Makefile.inc | |
parent | 54a2a0ad45177e1d09cc007fe3db2f6b41a4924c (diff) |
Makefile.inc: Remove explicit ramstage dependency for coreboot.rom
This is already handled in $(prebuild-files).
Change-Id: I648f97198772d30d6d267ab9d6f7fa8d1d5d0e91
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56111
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc index eb505e553d..96374a94a7 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -1146,7 +1146,7 @@ add_intermediate = \ $(1): $(obj)/coreboot.pre $(2) | $(INTERMEDIATE) \ $(eval INTERMEDIATE+=$(1)) $(eval PHONY+=$(1)) -$(obj)/coreboot.rom: $(obj)/coreboot.pre $(RAMSTAGE) $(CBFSTOOL) $$(INTERMEDIATE) +$(obj)/coreboot.rom: $(obj)/coreboot.pre $(CBFSTOOL) $$(INTERMEDIATE) @printf " CBFS $(subst $(obj)/,,$(@))\n" # The full ROM may be larger than the CBFS part, so create an empty # file (filled with \377 = 0xff) and copy the CBFS image over it. |