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

Unified Diff: utility/Makefile

Issue 5985009: Add firmware image packing tool (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/vboot_reference.git@master
Patch Set: Created 9 years, 12 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/pack_image » ('j') | utility/pack_image » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utility/Makefile
diff --git a/utility/Makefile b/utility/Makefile
index 68975840b904feda45be66e402033e7ac2ef88f4..cdd342888696b6eba3f543edd848eb8a46df40b4 100644
--- a/utility/Makefile
+++ b/utility/Makefile
@@ -34,6 +34,7 @@ TARGET_NAMES = dumpRSAPublicKey \
dev_sign_file \
dump_fmap \
dev_debug_vboot \
+ pack_image
TARGET_BINS = $(addprefix ${BUILD_ROOT}/,$(TARGET_NAMES))
ALL_DEPS = $(addsuffix .d,${TARGET_BINS})
@@ -99,6 +100,10 @@ ${BUILD_ROOT}/dev_sign_file: dev_sign_file.c $(LIBS)
${BUILD_ROOT}/dump_fmap: dump_fmap.c
$(CC) $(CFLAGS) $< -o $@
+${BUILD_ROOT}/pack_image: pack_image
+ cp -f $< $@
+ chmod +x $@
+
install: $(TARGET_BINS)
mkdir -p $(DESTDIR)
cp -f $(TARGET_BINS) $(DESTDIR)
« no previous file with comments | « no previous file | utility/pack_image » ('j') | utility/pack_image » ('J')

Powered by Google App Engine
This is Rietveld 408576698