Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13581
-gerrit
commit d2284603ecd14736bfffea07b666aa21c27288e4 Author: Aaron Durbin adurbin@chromium.org Date: Mon Jan 25 16:58:43 2016 -0600
lib: add bootmode.c to verstage
Some of the functions within bootmode.c may be required by boards in verstage. Therefore, allow this file to be built in verstage.
BUG=chrome-os-partner:44827 BRANCH=glados TEST=Built chell w/ bootmode.c dependencies in separate verstage.
Change-Id: Id291c1b5cc6594c3ee16c7c3385e682addc0efb6 Signed-off-by: Patrick Georgi pgeorgi@chromium.org Original-Commit-Id: 084b620e12e7f948087786c0e34d5999a73137a5 Original-Change-Id: I2207819ec1490767cb1cf4b92e34e714783c1c22 Original-Signed-off-by: Aaron Durbin adurbin@chromium.org Original-Reviewed-on: https://chromium-review.googlesource.com/324071 Original-Reviewed-by: Duncan Laurie dlaurie@chromium.org --- src/lib/Makefile.inc | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc index 7eb9108..7d1d146 100644 --- a/src/lib/Makefile.inc +++ b/src/lib/Makefile.inc @@ -175,6 +175,7 @@ $(call src-to-obj,verstage,$(dir)/version.c) : $(obj)/build.h
romstage-y += bootmode.c ramstage-y += bootmode.c +verstage-y += bootmode.c
bootblock-y += halt.c romstage-y += halt.c