summaryrefslogtreecommitdiffstats
path: root/lib/Makefile
diff options
context:
space:
mode:
authorMarek BehĂșn <marek.behun@nic.cz>2019-04-29 22:40:43 +0200
committerTom Rini <trini@konsulko.com>2019-05-05 08:48:50 -0400
commit83a486b6fdb9cc0d009de75d304fb51156425215 (patch)
tree66e0740002768fa6dcb2f1a4511544b4b65d54ce /lib/Makefile
parent5adcbe064357948435e04774a34c814d65e6d2e0 (diff)
downloadu-boot-83a486b6fdb9cc0d009de75d304fb51156425215.tar.gz
u-boot-83a486b6fdb9cc0d009de75d304fb51156425215.tar.xz
u-boot-83a486b6fdb9cc0d009de75d304fb51156425215.zip
lib: Add xxhash support
This adds the xxhash support from Linux. Files are almost identical to those added to Linux in commit 5d240522 ("lib: Add xxhash module") (they haven't been touched since in Linux). The only difference is to add some includes to be compatible with U-Boot. Also SPDX lincese tags were added. Signed-off-by: Marek BehĂșn <marek.behun@nic.cz>
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 47829bfed5..6a52543530 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -37,6 +37,7 @@ obj-$(CONFIG_GENERATE_SMBIOS_TABLE) += smbios.o
obj-$(CONFIG_IMAGE_SPARSE) += image-sparse.o
obj-y += ldiv.o
obj-$(CONFIG_MD5) += md5.o
+obj-$(CONFIG_XXHASH) += xxhash.o
obj-y += net_utils.o
obj-$(CONFIG_PHYSMEM) += physmem.o
obj-y += rc4.o