3277694825
The commit [1] should fix a circular dependency by
using util-linux-libs instead of util-linux if
BR2_PACKAGE_UTIL_LINUX_LIBS is set.
But util-linux is still in CRYPTSETUP_DEPENDENCIES.
Remove it to really break the circular dependency.
[1] e3c86f5c9e
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Cc: Yann E. MORIN <yann.morin.1998@free.fr>
Reviewed-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
49 lines
1.7 KiB
Makefile
49 lines
1.7 KiB
Makefile
################################################################################
|
|
#
|
|
# cryptsetup
|
|
#
|
|
################################################################################
|
|
|
|
CRYPTSETUP_VERSION_MAJOR = 2.3
|
|
CRYPTSETUP_VERSION = $(CRYPTSETUP_VERSION_MAJOR).4
|
|
CRYPTSETUP_SOURCE = cryptsetup-$(CRYPTSETUP_VERSION).tar.xz
|
|
CRYPTSETUP_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/cryptsetup/v$(CRYPTSETUP_VERSION_MAJOR)
|
|
CRYPTSETUP_DEPENDENCIES = \
|
|
lvm2 popt host-pkgconf json-c libargon2 \
|
|
$(if $(BR2_PACKAGE_LIBICONV),libiconv) \
|
|
$(if $(BR2_PACKAGE_UTIL_LINUX_LIBS),util-linux-libs,util-linux) \
|
|
$(TARGET_NLS_DEPENDENCIES)
|
|
CRYPTSETUP_LICENSE = GPL-2.0+ (programs), LGPL-2.1+ (library)
|
|
CRYPTSETUP_LICENSE_FILES = COPYING COPYING.LGPL
|
|
CRYPTSETUP_INSTALL_STAGING = YES
|
|
CRYPTSETUP_CONF_ENV += LDFLAGS="$(TARGET_LDFLAGS) $(TARGET_NLS_LIBS)"
|
|
CRYPTSETUP_CONF_OPTS += --enable-blkid --enable-libargon2
|
|
|
|
# cryptsetup uses libgcrypt by default, but can be configured to use OpenSSL
|
|
# or kernel crypto modules instead
|
|
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
|
CRYPTSETUP_DEPENDENCIES += libgcrypt
|
|
CRYPTSETUP_CONF_ENV += LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config
|
|
CRYPTSETUP_CONF_OPTS += --with-crypto_backend=gcrypt
|
|
else ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
CRYPTSETUP_DEPENDENCIES += openssl
|
|
CRYPTSETUP_CONF_OPTS += --with-crypto_backend=openssl
|
|
else
|
|
CRYPTSETUP_CONF_OPTS += --with-crypto_backend=kernel
|
|
endif
|
|
|
|
HOST_CRYPTSETUP_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
host-lvm2 \
|
|
host-popt \
|
|
host-util-linux \
|
|
host-json-c \
|
|
host-openssl
|
|
|
|
HOST_CRYPTSETUP_CONF_OPTS = --with-crypto_backend=openssl \
|
|
--disable-kernel_crypto \
|
|
--enable-blkid
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|