diff options
author | Amaury Pouly <amaury.pouly@gmail.com> | 2017-01-03 16:09:34 +0100 |
---|---|---|
committer | Amaury Pouly <amaury.pouly@gmail.com> | 2017-01-16 19:59:28 +0100 |
commit | 759a78e5dff134f2632875f61aae60815eea6f5b (patch) | |
tree | 24110ff498d81535146094fdb80d766456bd513f /rbutil/mkimxboot | |
parent | 8b3f5a8ad7434850804a4a664d2b07c6ffa9b1c7 (diff) |
imxtools/sbtools: switch SHA1 implementation to Crypto++
The current implementation was custom and super slow. Since we use Crypto++
anyway, we might as well get use a good implementation.
Change-Id: I761ad7401653471e54000e1c2bc3d9882378112f
Diffstat (limited to 'rbutil/mkimxboot')
-rw-r--r-- | rbutil/mkimxboot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rbutil/mkimxboot/Makefile b/rbutil/mkimxboot/Makefile index e635f64103..132c2435f9 100644 --- a/rbutil/mkimxboot/Makefile +++ b/rbutil/mkimxboot/Makefile @@ -15,7 +15,7 @@ LDFLAGS += -lcrypto++ OUTPUT = mkimxboot # inputs for lib -IMXTOOLS_SOURCES = misc.c sb.c crypto.cpp crc.c sha1.c elf.c +IMXTOOLS_SOURCES = misc.c sb.c crypto.cpp crc.c elf.c LIBSOURCES := dualboot.c mkimxboot.c md5.c \ $(addprefix $(IMXTOOLS_DIR),$(IMXTOOLS_SOURCES)) # inputs for binary only |