diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2017-03-20 16:14:06 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-03-31 13:25:59 +0200 |
commit | 269d009a81d4a20a1e0d1bfcf20ccdaeb3e973c4 (patch) | |
tree | c12d8033cf1e9503bef75a8503fd1657a78de9a6 /meta-oe | |
parent | af279a8e746ba80e4811751ba6ede3519cd71b3c (diff) | |
download | meta-openembedded-269d009a81d4a20a1e0d1bfcf20ccdaeb3e973c4.tar.gz |
lvm2: libdevicemapper package needs udev rules and dmsetup
Applications like kpartx and cryptsetup were broken by moving only
libdevicemapper itself into a separate package: as a result of that
change, lvm2 was not getting pulled into images anymore although
libdevicemapper depends on dmsetup and udev rules to be fully
functional.
For example, "kpartx -as" started to hang while waiting for the udev
rules to trigger, which is what creates the /dev/mapper/ entries for
the new partitions (see also
https://github.com/docker/docker/issues/22025#issuecomment-243943728).
Putting udev rules and dmsetup also into libdevicemapper is perhaps
counter-intuitive, but necessary to keep the package functioning. A
full lvm2 installation is guaranteed to pull them in, too, both
because of implicit library dependencies and (just to be sure) an
explicit RDEPENDS.
lvm2-native doesn't have packages, so this RDEPENDS must be limited to
the target case.
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-support/lvm2/lvm2.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/lvm2/lvm2.inc b/meta-oe/recipes-support/lvm2/lvm2.inc index 75fc51f8d..0047914a7 100644 --- a/meta-oe/recipes-support/lvm2/lvm2.inc +++ b/meta-oe/recipes-support/lvm2/lvm2.inc | |||
@@ -84,14 +84,17 @@ SYSTEMD_AUTO_ENABLE = "disable" | |||
84 | 84 | ||
85 | TARGET_CC_ARCH += "${LDFLAGS}" | 85 | TARGET_CC_ARCH += "${LDFLAGS}" |
86 | 86 | ||
87 | FILES_${PN} += "${libdir}/device-mapper/*.so ${nonarch_base_libdir}/udev" | 87 | FILES_${PN} += "${libdir}/device-mapper/*.so" |
88 | FILES_${PN}-scripts = " \ | 88 | FILES_${PN}-scripts = " \ |
89 | ${sbindir}/blkdeactivate \ | 89 | ${sbindir}/blkdeactivate \ |
90 | ${sbindir}/fsadm \ | 90 | ${sbindir}/fsadm \ |
91 | ${sbindir}/lvmconf \ | 91 | ${sbindir}/lvmconf \ |
92 | ${sbindir}/lvmdump \ | 92 | ${sbindir}/lvmdump \ |
93 | " | 93 | " |
94 | FILES_libdevmapper = "${libdir}/libdevmapper.so.*" | 94 | # Specified explicitly for the udev rules, just in case that it does not get picked |
95 | # up automatically: | ||
96 | RDEPENDS_${PN}_append_class-target = " libdevmapper" | ||
97 | FILES_libdevmapper = "${sbindir}/dmsetup ${libdir}/libdevmapper.so.* ${nonarch_base_libdir}/udev/rules.d" | ||
95 | FILES_libdevmapper-dev = " \ | 98 | FILES_libdevmapper-dev = " \ |
96 | ${libdir}/libdevmapper.so \ | 99 | ${libdir}/libdevmapper.so \ |
97 | ${libdir}/pkgconfig/devmapper.pc \ | 100 | ${libdir}/pkgconfig/devmapper.pc \ |