| Index: utility/Makefile
|
| diff --git a/utility/Makefile b/utility/Makefile
|
| index 1f50aebd83e5b09fdc74e3f969cc2276e9f935dd..e6b1bc0e697124bcaa4e5991ebb8f84618bb9c91 100644
|
| --- a/utility/Makefile
|
| +++ b/utility/Makefile
|
| @@ -20,8 +20,8 @@ LIBS = $(TOP)/misclibs/file_keys.o \
|
| $(TOP)/misclibs/signature_digest.o \
|
| $(TOP)/vfirmware/firmware_image.o \
|
| $(TOP)/vkernel/kernel_image.o \
|
| - $(FWLIB) \
|
| - $(HOSTLIB)
|
| + $(HOSTLIB) \
|
| + $(FWLIB)
|
| SUBDIRS = cgpt
|
|
|
| DESTDIR ?= /opt/bin
|
| @@ -32,6 +32,7 @@ TARGET_BINS = dumpRSAPublicKey \
|
| kernel_utility \
|
| load_kernel_test \
|
| signature_digest_utility \
|
| + vbutil_key \
|
| verify_data
|
|
|
| all: $(TARGET_BINS) subdirs
|
| @@ -66,6 +67,9 @@ load_kernel_test: load_kernel_test.c $(LIBS)
|
| signature_digest_utility: signature_digest_utility.c $(LIBS)
|
| $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
|
|
|
| +vbutil_key: vbutil_key.c $(LIBS)
|
| + $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
|
| +
|
| verify_data: verify_data.c $(LIBS)
|
| $(CC) $(CFLAGS) $(INCLUDES) $< -o $@ $(LIBS) -lcrypto
|
|
|
|
|