diff options
| author | Yevhen Kyriukha <kirgene@gmail.com> | 2013-09-01 11:14:47 +0000 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-09-10 22:43:13 +0200 |
| commit | e0eaa29f0208bf32ce33e1a50ad9a1f39f7b6c27 (patch) | |
| tree | 3a8202b7606538143efc3af1cd021a6c016bcc13 /meta-oe/recipes-support/cryptsetup/cryptsetup_1.6.2.bb | |
| parent | 4dc8ba955ff88505ca2fc5ad27889fa3870db417 (diff) | |
| download | meta-openembedded-e0eaa29f0208bf32ce33e1a50ad9a1f39f7b6c27.tar.gz | |
cryptsetup: Updated to upstream version.
Also build static libraries.
Signed-off-by: Yevhen Kyriukha <kirgene@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/cryptsetup/cryptsetup_1.6.2.bb')
| -rw-r--r-- | meta-oe/recipes-support/cryptsetup/cryptsetup_1.6.2.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/cryptsetup/cryptsetup_1.6.2.bb b/meta-oe/recipes-support/cryptsetup/cryptsetup_1.6.2.bb new file mode 100644 index 0000000000..6c3418a0c4 --- /dev/null +++ b/meta-oe/recipes-support/cryptsetup/cryptsetup_1.6.2.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | SUMMARY = "Manage plain dm-crypt and LUKS encrypted volumes" | ||
| 2 | DESCRIPTION = "Cryptsetup is used to conveniently setup dm-crypt managed \ | ||
| 3 | device-mapper mappings. These include plain dm-crypt volumes and \ | ||
| 4 | LUKS volumes. The difference is that LUKS uses a metadata header \ | ||
| 5 | and can hence offer more features than plain dm-crypt. On the other \ | ||
| 6 | hand, the header is visible and vulnerable to damage." | ||
| 7 | HOMEPAGE = "http://code.google.com/p/cryptsetup/" | ||
| 8 | SECTION = "console" | ||
| 9 | LICENSE = "GPL-2.0-with-OpenSSL-exception" | ||
| 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=32107dd283b1dfeb66c9b3e6be312326" | ||
| 11 | |||
| 12 | DEPENDS = "util-linux lvm2 popt libgcrypt" | ||
| 13 | |||
| 14 | SRC_URI = "http://cryptsetup.googlecode.com/files/cryptsetup-${PV}.tar.bz2" | ||
| 15 | SRC_URI[md5sum] = "cd834da49fbe92dd66df02cc5c61280f" | ||
| 16 | SRC_URI[sha256sum] = "15723f0198303d4bcb99d480b7a773918e2d319f0348457988c063bdd03e109a" | ||
| 17 | |||
| 18 | inherit autotools gettext | ||
| 19 | |||
| 20 | # Use openssl because libgcrypt drops root privileges | ||
| 21 | # if libgcrypt is linked with libcap support | ||
| 22 | PACKAGECONFIG ??= "openssl" | ||
| 23 | PACKAGECONFIG[openssl] = "--with-crypto_backend=openssl,,openssl" | ||
| 24 | PACKAGECONFIG[gcrypt] = "--with-crypto_backend=gcrypt,,libgcrypt" | ||
| 25 | |||
| 26 | RRECOMMENDS_${PN} = "kernel-module-aes-generic \ | ||
| 27 | kernel-module-dm-crypt \ | ||
| 28 | kernel-module-md5 \ | ||
| 29 | kernel-module-cbc \ | ||
| 30 | kernel-module-sha256-generic \ | ||
| 31 | " | ||
| 32 | |||
| 33 | EXTRA_OECONF = "--enable-static" | ||
