Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3095)

Unified Diff: utility/Makefile

Issue 3077016: Small program to temporary fix TPM state until we can do this in the BIOS. (Closed) Base URL: ssh://git@chromiumos-git/vboot_reference.git
Patch Set: . Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/tpm_lite/startup.c ('k') | utility/tpm_init_temp_fix.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utility/Makefile
diff --git a/utility/Makefile b/utility/Makefile
index 7d0a7219f65e0e6cd61cc80ba5c48db0d0bcb526..ff0ab102d81ee89030377e312da155b8ae067080 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -22,6 +22,7 @@ TARGET_NAMES = dumpRSAPublicKey \
load_kernel_test \
signature_digest_utility \
tlcl_generator \
+ tpm_init_temp_fix \
vbutil_firmware \
vbutil_kernel \
vbutil_key \
@@ -69,6 +70,9 @@ ${BUILD_ROOT}/verify_data: verify_data.c $(LIBS)
${BUILD_ROOT}/sign_image: sign_image.c $(LIBS)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
+${BUILD_ROOT}/tpm_init_temp_fix: tpm_init_temp_fix.c $(LIBS)
+ $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS)
+
install: $(TARGET_BINS)
mkdir -p $(DESTDIR)
cp -f $(TARGET_BINS) $(DESTDIR)
« no previous file with comments | « tests/tpm_lite/startup.c ('k') | utility/tpm_init_temp_fix.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698