summaryrefslogtreecommitdiffstats
path: root/rules/host-cryptsetup.make
blob: e2d0c2d62f25ee355b94c375a3e7de48943c0aaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*-makefile-*-
#
# Copyright (C) 2019 by Bastian Krause <bst@pengutronix.de>
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
HOST_PACKAGES-$(PTXCONF_HOST_CRYPTSETUP) += host-cryptsetup

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

#
# autoconf
#
HOST_CRYPTSETUP_CONF_TOOL	:= autoconf
HOST_CRYPTSETUP_CONF_OPT	:= \
	$(HOST_AUTOCONF) \
	--disable-keyring \
	--disable-nls \
	--disable-rpath \
	--disable-fips \
	--disable-pwquality \
	--disable-static-cryptsetup \
	--disable-cryptsetup \
	--enable-veritysetup \
	--disable-cryptsetup-reencrypt \
	--disable-integritysetup \
	--disable-selinux \
	--disable-udev \
	--disable-kernel_crypto \
	--disable-gcrypt-pbkdf2 \
	--enable-internal-argon2 \
	--disable-libargon2 \
	--disable-internal-sse-argon2 \
	--enable-blkid \
	--enable-dev-random \
	--disable-python \
	--with-crypto_backend=openssl

# vim: syntax=make