diff options
author | Charles Manning <cdhmanning@gmail.com> | 2014-05-14 14:45:00 +1200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-05 14:38:38 -0400 |
commit | abbc67eedf37a240fe6cdd1ce46eedd12cd3a13f (patch) | |
tree | 36ea84685bf3f44cdb5da9dccb4afc85c073c567 /tools/Makefile | |
parent | 4eb580b780057413ddc82855d913ea2f1cbc9dd2 (diff) | |
download | u-boot-imx-abbc67eedf37a240fe6cdd1ce46eedd12cd3a13f.zip u-boot-imx-abbc67eedf37a240fe6cdd1ce46eedd12cd3a13f.tar.gz u-boot-imx-abbc67eedf37a240fe6cdd1ce46eedd12cd3a13f.tar.bz2 |
mkimage : Split out and clean pbl_crc32 for use by other image types
The crc32 used by pblimgae is NOT the same as zlib crc32.
The pbl_crc32 is useful for other purposes in mkimage so split it out.
While we are about it, clean up redundant and confusing code.
Signed-off-by: Charles Manning <cdhmanning@gmail.com>
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile index 7610557..cbf00d5 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -91,6 +91,7 @@ dumpimage-mkimage-objs := aisimage.o \ omapimage.o \ os_support.o \ pblimage.o \ + pbl_crc32.o \ sha1.o \ sha256.o \ ublimage.o \ |