mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
cryptsetup: new package package
[Thomas P: add license informations, fix header, adjust dependencies in Config.in file on toolchain options.] Signed-off-by: Martin Hicks <mort@bork.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
b6fb2f5018
commit
21028166a5
@ -235,6 +235,7 @@ source "package/freescale-imx/Config.in"
|
|||||||
source "package/a10disp/Config.in"
|
source "package/a10disp/Config.in"
|
||||||
source "package/acpid/Config.in"
|
source "package/acpid/Config.in"
|
||||||
source "package/cdrkit/Config.in"
|
source "package/cdrkit/Config.in"
|
||||||
|
source "package/cryptsetup/Config.in"
|
||||||
source "package/dbus/Config.in"
|
source "package/dbus/Config.in"
|
||||||
source "package/dbus-glib/Config.in"
|
source "package/dbus-glib/Config.in"
|
||||||
source "package/dbus-python/Config.in"
|
source "package/dbus-python/Config.in"
|
||||||
|
17
package/cryptsetup/Config.in
Normal file
17
package/cryptsetup/Config.in
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
config BR2_PACKAGE_CRYPTSETUP
|
||||||
|
bool "cryptsetup"
|
||||||
|
select BR2_PACKAGE_LIBGCRYPT
|
||||||
|
select BR2_PACKAGE_POPT
|
||||||
|
select BR2_PACKAGE_LVM2
|
||||||
|
select BR2_PACKAGE_E2FSPROGS
|
||||||
|
depends on BR2_LARGEFILE # lvm2, util-linux
|
||||||
|
depends on BR2_USE_MMU # lvm2
|
||||||
|
depends on BR2_USE_WCHAR # util-linux
|
||||||
|
help
|
||||||
|
This tool helps manipulate dm-crypt and luks partitions for
|
||||||
|
on-disk encryption.
|
||||||
|
|
||||||
|
https://code.google.com/p/cryptsetup/
|
||||||
|
|
||||||
|
comment "cryptsetup needs largefile and wchar support in toolchain"
|
||||||
|
depends on !BR2_LARGEFILE || !BR2_USE_WCHAR
|
15
package/cryptsetup/cryptsetup.mk
Normal file
15
package/cryptsetup/cryptsetup.mk
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# cryptsetup
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
CRYPTSETUP_VERSION = 1.6.2
|
||||||
|
CRYPTSETUP_SOURCE = cryptsetup-$(CRYPTSETUP_VERSION).tar.bz2
|
||||||
|
CRYPTSETUP_SITE = http://cryptsetup.googlecode.com/files
|
||||||
|
CRYPTSETUP_CONF_ENV += LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config
|
||||||
|
CRYPTSETUP_DEPENDENCIES = lvm2 popt e2fsprogs libgcrypt host-pkgconf
|
||||||
|
CRYPTSETUP_LICENSE = GPLv2+ (programs), LGPLv2.1+ (library)
|
||||||
|
CRYPTSETUP_LICENSE_FILES = COPYING COPYING.LGPL
|
||||||
|
|
||||||
|
$(eval $(autotools-package))
|
Loading…
x
Reference in New Issue
Block a user