1config BR2_PACKAGE_LUKSMETA 2 bool "luksmeta" 3 depends on BR2_TOOLCHAIN_HAS_THREADS # cryptsetup -> lvm2 4 depends on BR2_USE_MMU # cryptsetup -> lvm2 5 depends on !BR2_STATIC_LIBS # cryptsetup -> lvm2 6 depends on BR2_TOOLCHAIN_HAS_SYNC_4 # cryptsetup -> json-c 7 select BR2_PACKAGE_CRYPTSETUP 8 help 9 LUKSMeta is a simple library and utility for storing 10 metadata in the LUKSv1 header. 11 12 https://github.com/latchset/luksmeta 13 14comment "luksmeta needs a toolchain w/ threads, dynamic library" 15 depends on BR2_USE_MMU 16 depends on BR2_TOOLCHAIN_HAS_SYNC_4 17 depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS 18