diff options
author | Aaron Durbin <adurbin@chromium.org> | 2015-05-13 13:37:43 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2015-05-13 20:53:38 +0200 |
commit | fd6fb26ae77ae125fb9b9f0c7949e3e8b5796fd1 (patch) | |
tree | b5912d0a5e9880f7ed3165fb5a6b2da49bc4dcdb /src/lib/Makefile.inc | |
parent | ce2c50d895ea57798c1eb4296f205d593288925d (diff) | |
download | coreboot-fd6fb26ae77ae125fb9b9f0c7949e3e8b5796fd1.tar.xz |
verstage: provide support for serial console
verstage previously lacked serial console support.
Add the necessary objects and macro checks to allow
verstage to include the serial console.
Change-Id: Ibe911ad347cac0b089f5bc0d4263956f44f3d116
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/10196
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/lib/Makefile.inc')
-rw-r--r-- | src/lib/Makefile.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc index db83698a04..7d374c6d00 100644 --- a/src/lib/Makefile.inc +++ b/src/lib/Makefile.inc @@ -141,11 +141,13 @@ romstage-y += version.c ramstage-y += version.c smm-y += version.c secmon-y += version.c +verstage-y += version.c $(obj)/lib/version.bootblock.o : $(obj)/build.h $(obj)/lib/version.romstage.o : $(obj)/build.h $(obj)/lib/version.ramstage.o : $(obj)/build.h $(obj)/lib/version.smm.o : $(obj)/build.h +$(obj)/lib/version.verstage.o : $(obj)/build.h romstage-y += bootmode.c ramstage-y += bootmode.c |