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

Unified Diff: utility/Makefile

Issue 2792014: Rough first draft of the firmware signing utility. (Closed) Base URL: ssh://git@chromiumos-git/vboot_reference.git
Patch Set: rebased with the latest code in master Created 10 years, 6 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 | « no previous file | utility/sign_image.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 6a65e0beff974470862e58b6034505c8afb7823b..43e9b2ba395a238b95fba032896a8add3b14020e 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -29,6 +29,7 @@ TARGET_NAMES = dumpRSAPublicKey \
gbb_utility \
kernel_utility \
load_kernel_test \
+ sign_image \
signature_digest_utility \
vbutil_key \
vbutil_kernel \
@@ -72,6 +73,8 @@ ${BUILD_ROOT}/vbutil_keyblock: vbutil_keyblock.c $(LIBS)
${BUILD_ROOT}/verify_data: verify_data.c $(LIBS)
$(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
+${BUILD_ROOT}/sign_image: sign_image.c $(LIBS)
+ $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
install: $(TARGET_BINS)
mkdir -p $(DESTDIR)
« no previous file with comments | « no previous file | utility/sign_image.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698