diff options
author | Duncan Laurie <dlaurie@chromium.org> | 2016-09-07 10:56:25 -0700 |
---|---|---|
committer | Duncan Laurie <dlaurie@chromium.org> | 2016-09-08 16:24:01 +0200 |
commit | 7fbdad80fd439a8afb04e20bd67c8c5fe766dc1a (patch) | |
tree | 59efd2599d74005e1a7bd371a3306939ac00bb2c /src/lib | |
parent | b5026bf9e0d252ba338c64078cb68175c6752c5e (diff) |
lib: Enable hexdump in verstage
Enable the hexdump function in verstage as it can be useful there for
debugging I2C and TPM transactions.
Change-Id: If9dc4bcc30964e18ff5d8a98559f6306c0adec6f
Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-on: https://review.coreboot.org/16528
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc index e2cf9eff67..355734ab17 100644 --- a/src/lib/Makefile.inc +++ b/src/lib/Makefile.inc @@ -147,6 +147,7 @@ postcar-y += imd.c bootblock-y += hexdump.c ramstage-y += hexdump.c romstage-y += hexdump.c +verstage-y += hexdump.c bootblock-$(CONFIG_REG_SCRIPT) += reg_script.c verstage-$(CONFIG_REG_SCRIPT) += reg_script.c |