diff options
author | Max Kellermann <max.kellermann@gmail.com> | 2018-09-18 10:26:07 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-09-24 11:49:45 -0700 |
commit | 6cc057dad7e8223f5258a30eeaa3fbc587dcb0a9 (patch) | |
tree | 2d62107531bc203c08a22ff2d2a89cded870f552 /meta-oe/recipes-extended | |
parent | f01911ba4d184e7bcd3ff2605f243358d8f85fcf (diff) | |
download | meta-openembedded-6cc057dad7e8223f5258a30eeaa3fbc587dcb0a9.tar.gz |
libblockdev: make various features optional
Signed-off-by: Max Kellermann <max.kellermann@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
-rw-r--r-- | meta-oe/recipes-extended/libblockdev/libblockdev_2.18.bb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta-oe/recipes-extended/libblockdev/libblockdev_2.18.bb b/meta-oe/recipes-extended/libblockdev/libblockdev_2.18.bb index bf33b968e..021f64142 100644 --- a/meta-oe/recipes-extended/libblockdev/libblockdev_2.18.bb +++ b/meta-oe/recipes-extended/libblockdev/libblockdev_2.18.bb | |||
@@ -10,12 +10,6 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c07cb499d259452f324bb90c3067d85c" | |||
10 | 10 | ||
11 | inherit autotools python3native gobject-introspection | 11 | inherit autotools python3native gobject-introspection |
12 | 12 | ||
13 | DEPENDS += " \ | ||
14 | cryptsetup \ | ||
15 | libbytesize \ | ||
16 | btrfs-tools \ | ||
17 | " | ||
18 | |||
19 | SRCREV = "0debeb45562ac3d8f6f43f6f942b238abab55be9" | 13 | SRCREV = "0debeb45562ac3d8f6f43f6f942b238abab55be9" |
20 | SRC_URI = " \ | 14 | SRC_URI = " \ |
21 | git://github.com/rhinstaller/libblockdev;branch=master \ | 15 | git://github.com/rhinstaller/libblockdev;branch=master \ |
@@ -25,7 +19,7 @@ S = "${WORKDIR}/git" | |||
25 | 19 | ||
26 | FILES_${PN} += "${PYTHON_SITEPACKAGES_DIR}" | 20 | FILES_${PN} += "${PYTHON_SITEPACKAGES_DIR}" |
27 | 21 | ||
28 | PACKAGECONFIG ??= "python3 lvm dm kmod parted fs escrow" | 22 | PACKAGECONFIG ??= "python3 lvm dm kmod parted fs escrow btrfs crypto mdraid kbd lvm-dbus" |
29 | PACKAGECONFIG[python3] = "--with-python3, --without-python3,,python3" | 23 | PACKAGECONFIG[python3] = "--with-python3, --without-python3,,python3" |
30 | PACKAGECONFIG[python2] = "--with-python2, --without-python2,,python2" | 24 | PACKAGECONFIG[python2] = "--with-python2, --without-python2,,python2" |
31 | PACKAGECONFIG[lvm] = "--with-lvm, --without-lvm, multipath-tools, lvm2" | 25 | PACKAGECONFIG[lvm] = "--with-lvm, --without-lvm, multipath-tools, lvm2" |
@@ -39,6 +33,12 @@ PACKAGECONFIG[doc] = "--with-gtk-doc, --without-gtk-doc, gtk-doc-native" | |||
39 | PACKAGECONFIG[nvdimm] = "--with-nvdimm, --without-nvdimm" | 33 | PACKAGECONFIG[nvdimm] = "--with-nvdimm, --without-nvdimm" |
40 | PACKAGECONFIG[vdo] = "--with-vdo, --without-vdo" | 34 | PACKAGECONFIG[vdo] = "--with-vdo, --without-vdo" |
41 | PACKAGECONFIG[escrow] = "--with-escrow, --without-escrow, nss volume-key" | 35 | PACKAGECONFIG[escrow] = "--with-escrow, --without-escrow, nss volume-key" |
36 | PACKAGECONFIG[btrfs] = "--with-btrfs,--without-btrfs,libbytesize btrfs-tools" | ||
37 | PACKAGECONFIG[crypto] = "--with-crypto,--without-crypto,cryptsetup nss volume-key" | ||
38 | PACKAGECONFIG[mdraid] = "--with-mdraid,--without-mdraid,libbytesize" | ||
39 | PACKAGECONFIG[kbd] = "--with-kbd,--without-kbd,libbytesize" | ||
40 | PACKAGECONFIG[lvm-dbus] = "--with-lvm_dbus,--without-lvm_dbus" | ||
41 | PACKAGECONFIG[mpath] = "--with-mpath,--without-mpath" | ||
42 | 42 | ||
43 | export GIR_EXTRA_LIBS_PATH="${B}/src/utils/.libs" | 43 | export GIR_EXTRA_LIBS_PATH="${B}/src/utils/.libs" |
44 | 44 | ||