mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-08 15:41:09 -09:00
Add static build support as lvm2 supports static library now Cryptsetup external-tokens feature still requires dynamic library Signed-off-by: Andreas Mohr <and@gmx.li> Signed-off-by: Arnout Vandecappelle <arnout@rnout.be>
26 lines
858 B
Plaintext
26 lines
858 B
Plaintext
config BR2_PACKAGE_CRYPTSETUP
|
|
bool "cryptsetup"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # lvm2
|
|
depends on BR2_USE_MMU # lvm2, libargon2
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
|
|
select BR2_PACKAGE_ARGP_STANDALONE if BR2_PACKAGE_LIBSSH && \
|
|
(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL)
|
|
select BR2_PACKAGE_POPT
|
|
select BR2_PACKAGE_LVM2
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBBLKID
|
|
select BR2_PACKAGE_JSON_C
|
|
select BR2_PACKAGE_LIBARGON2
|
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
|
help
|
|
This tool helps manipulate dm-crypt and luks partitions for
|
|
on-disk encryption.
|
|
|
|
https://gitlab.com/cryptsetup/cryptsetup
|
|
|
|
comment "cryptsetup needs a toolchain w/ threads"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|