diff options
author | Marek BehĂșn | 2019-04-29 22:40:43 +0200 |
---|---|---|
committer | Tom Rini | 2019-05-05 08:48:50 -0400 |
commit | 83a486b6fdb9cc0d009de75d304fb51156425215 (patch) | |
tree | 66e0740002768fa6dcb2f1a4511544b4b65d54ce /lib/Kconfig | |
parent | 5adcbe064357948435e04774a34c814d65e6d2e0 (diff) |
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/Kconfig')
-rw-r--r-- | lib/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 38012506d29..1ed69fafc73 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -327,6 +327,9 @@ config MD5 config CRC32C bool +config XXHASH + bool + endmenu menu "Compression Support" |