diff options
author | Randall Spangler <rspangler@chromium.org> | 2016-06-03 14:00:27 -0700 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2016-08-03 17:47:13 -0700 |
commit | 158b29672a17c1d11e182f0285e0009dd39e5204 (patch) | |
tree | d15e4c2e873de2dede00a9cc5cc662b1a7a4c8a0 /Makefile | |
parent | 46b77fb2f04941c869c3a98cd17e9209c36b2917 (diff) | |
download | vboot-158b29672a17c1d11e182f0285e0009dd39e5204.tar.gz |
futility: cmd_show uses only vboot 2.0 APIs
This removes the remaining vboot 1.0 API calls from cmd_show.
BUG=chromium:611535
BRANCH=none
TEST=make runtests
Change-Id: I03c4260aa034100efbbea1005367cd85dfff273d
Signed-off-by: Randall Spangler <rspangler@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/350173
Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -293,7 +293,7 @@ INCLUDES += \ # If we're not building for a specific target, just stub out things like the # TPM commands and various external functions that are provided by the BIOS. ifeq (${FIRMWARE_ARCH},) -INCLUDES += -Ihost/include -Ihost/lib/include +INCLUDES += -Ihost/include -Ihost/lib/include -Ihost/lib21/include endif # Firmware library, used by the other firmware components (depthcharge, @@ -1199,7 +1199,7 @@ ${TEST20_BINS}: ${FWLIB20} ${TEST20_BINS}: LIBS += ${FWLIB20} ${TEST21_BINS}: ${UTILLIB21} -${TEST21_BINS}: INCLUDES += -Ihost/lib21/include -Ifirmware/lib21/include +${TEST21_BINS}: INCLUDES += -Ifirmware/lib21/include ${TEST21_BINS}: LIBS += ${UTILLIB21} ${TESTBDB_BINS}: ${FWLIB2X} ${UTILBDB} |