commit | cdccc03aad0a3c11fcc35b24d73bcf3cf536f3c9 | [log] [tgz] |
---|---|---|
author | Marek BehĂșn <marek.behun@nic.cz> | Sun Sep 03 17:00:23 2017 +0200 |
committer | Tom Rini <trini@konsulko.com> | Mon Oct 02 20:31:25 2017 -0400 |
tree | 89b5c9a646761fa4e060043a8ca1a5bd4c46cbbc | |
parent | 206500bcddd19b46837dbe06d053cb9566205412 [diff] [blame] |
lib: Add CRC32-C This is needed for BTRFS. Signed-off-by: Marek Behun <marek.behun@nic.cz> create mode 100644 lib/crc32c.c
diff --git a/lib/Makefile b/lib/Makefile index 8e1c9d1..80216c2 100644 --- a/lib/Makefile +++ b/lib/Makefile
@@ -71,6 +71,7 @@ CFLAGS_display_options.o := $(if $(BUILD_TAG),-DBUILD_TAG='"$(BUILD_TAG)"') obj-$(CONFIG_BCH) += bch.o obj-y += crc32.o +obj-$(CONFIG_CRC32C) += crc32c.o obj-y += ctype.o obj-y += div64.o obj-y += hang.o