diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2019-08-29 23:57:28 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-08-29 09:07:34 -0700 |
commit | d8685320a4dd7bb4f125494dd1fd65ba648b5c21 (patch) | |
tree | f379eb6a25a76ac47159a7c170085984bc08f6fc /meta-oe/recipes-crypto/cryptsetup | |
parent | debaffd2d29665c5c0267a9cec1fc0fecaaf52f6 (diff) | |
download | meta-openembedded-d8685320a4dd7bb4f125494dd1fd65ba648b5c21.tar.gz |
cryptsetup: add libdevmapper to RDEPENDS
Since commit [libdevmapper/lvm2: force recipe libdevmapper to populate
sysroot only] applied, if recipe DEPENDS on libdevmapper, we have to
add it to packages RDEPENDS to fix [file-rdeps] QA issue
Skip [build-deps] and [file-rdeps] QA checking, add lvm2 to DEPENDS will
triger circular dependencies, use recipe libdevmapper to replace,
ignore the QA checking is fine.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-crypto/cryptsetup')
-rw-r--r-- | meta-oe/recipes-crypto/cryptsetup/cryptsetup_2.2.0.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta-oe/recipes-crypto/cryptsetup/cryptsetup_2.2.0.bb b/meta-oe/recipes-crypto/cryptsetup/cryptsetup_2.2.0.bb index 6ebf1e279f..194842ef80 100644 --- a/meta-oe/recipes-crypto/cryptsetup/cryptsetup_2.2.0.bb +++ b/meta-oe/recipes-crypto/cryptsetup/cryptsetup_2.2.0.bb | |||
@@ -16,6 +16,10 @@ DEPENDS = " \ | |||
16 | util-linux \ | 16 | util-linux \ |
17 | " | 17 | " |
18 | 18 | ||
19 | RDEPENDS_${PN} = " \ | ||
20 | libdevmapper \ | ||
21 | " | ||
22 | |||
19 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/${BPN}/v${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}/${BP}.tar.xz" | 23 | SRC_URI = "${KERNELORG_MIRROR}/linux/utils/${BPN}/v${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}/${BP}.tar.xz" |
20 | SRC_URI[md5sum] = "f7818082056e5bc0be12e4c7fc20345a" | 24 | SRC_URI[md5sum] = "f7818082056e5bc0be12e4c7fc20345a" |
21 | SRC_URI[sha256sum] = "9d8f8cac2836a1623c075b5cba96032271dc81a28b2aa27fbd8331e831416bb1" | 25 | SRC_URI[sha256sum] = "9d8f8cac2836a1623c075b5cba96032271dc81a28b2aa27fbd8331e831416bb1" |
@@ -85,4 +89,6 @@ EXTRA_OECONF += "--disable-libargon2" | |||
85 | 89 | ||
86 | FILES_${PN} += "${@bb.utils.contains('DISTRO_FEATURES','systemd','${exec_prefix}/lib/tmpfiles.d/cryptsetup.conf', '', d)}" | 90 | FILES_${PN} += "${@bb.utils.contains('DISTRO_FEATURES','systemd','${exec_prefix}/lib/tmpfiles.d/cryptsetup.conf', '', d)}" |
87 | 91 | ||
92 | INSANE_SKIP_${PN} += "build-deps file-rdeps" | ||
93 | |||
88 | BBCLASSEXTEND = "native nativesdk" | 94 | BBCLASSEXTEND = "native nativesdk" |