Files

38 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

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