heads/modules/cryptsetup

36 lines
1023 B
Plaintext
Raw Permalink Normal View History

modules-$(CONFIG_CRYPTSETUP) += cryptsetup
2016-08-19 15:20:41 +00:00
cryptsetup_depends := util-linux popt lvm2 $(musl_dep)
cryptsetup_version := 1.7.3
2016-08-19 15:20:41 +00:00
cryptsetup_dir := cryptsetup-$(cryptsetup_version)
cryptsetup_tar := cryptsetup-$(cryptsetup_version).tar.xz
cryptsetup_url := https://www.kernel.org/pub/linux/utils/cryptsetup/v1.7/cryptsetup-$(cryptsetup_version).tar.xz
cryptsetup_hash := af2b04e8475cf40b8d9ffd97a1acfa73aa787c890430afd89804fb544d6adc02
2016-08-19 15:20:41 +00:00
# Use an empty prefix so that the executables will not include the
# build path.
cryptsetup_configure := ./configure \
$(CROSS_TOOLS) \
--host i386-elf-linux \
2017-04-07 13:51:15 +00:00
--prefix "/" \
--disable-gcrypt-pbkdf2 \
--with-crypto_backend=kernel \
# but after building, replace prefix so that they will be installed
# in the correct directory.
cryptsetup_target := \
2017-03-21 18:29:07 +00:00
$(MAKE_JOBS) \
&& $(MAKE) \
-C $(build)/$(cryptsetup_dir) \
prefix="$(INSTALL)" \
install
cryptsetup_output := \
src/.libs/cryptsetup \
src/.libs/veritysetup \
cryptsetup_libraries := \
lib/.libs/libcryptsetup.so.4 \