diff options
| author | Arturo Buzarra <arturo.buzarra@digi.com> | 2019-08-05 10:24:12 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2019-08-14 16:03:43 -0700 |
| commit | 64ed8b631f07982fc9ca4096a2da4a835fcd2e2a (patch) | |
| tree | 7e84d339c31cbb72e2c272dbea5f28a412c9a847 | |
| parent | cf453be9f232424af551273a9aa76a5bf6e4a29b (diff) | |
| download | meta-openembedded-64ed8b631f07982fc9ca4096a2da4a835fcd2e2a.tar.gz | |
lvm2: Fix RDEPEND on lvm2 to lvm2-udevrules
Commit c6e963f9e ("lvm2: Add RDEPEND on lvm2 to lvm2-udevrules") added
a package dependency due to lvm2-udevrules needs dmsetup, however
dmsetup was moved to libdevmapper in commit 269d009a81d4 ("lvm2:
libdevicemapper package needs udev rules and dmsetup"), so this
dependency should be only for libdevmapper instead of the full package.
With the current implementation, a package that has a dependency with
lvm2-udev rules will include also many unnecessary packages like lvm2,
lvm2-scripts, etc. and their dependencies.
Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-support/lvm2/lvm2_2.03.02.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/lvm2/lvm2_2.03.02.bb b/meta-oe/recipes-support/lvm2/lvm2_2.03.02.bb index e2ce95c815..4ae0a62ab7 100644 --- a/meta-oe/recipes-support/lvm2/lvm2_2.03.02.bb +++ b/meta-oe/recipes-support/lvm2/lvm2_2.03.02.bb | |||
| @@ -50,7 +50,7 @@ FILES_${PN}-scripts = " \ | |||
| 50 | # Specified explicitly for the udev rules, just in case that it does not get picked | 50 | # Specified explicitly for the udev rules, just in case that it does not get picked |
| 51 | # up automatically: | 51 | # up automatically: |
| 52 | FILES_${PN}-udevrules = "${nonarch_base_libdir}/udev/rules.d" | 52 | FILES_${PN}-udevrules = "${nonarch_base_libdir}/udev/rules.d" |
| 53 | RDEPENDS_${PN}-udevrules = "${PN}" | 53 | RDEPENDS_${PN}-udevrules = "libdevmapper" |
| 54 | RDEPENDS_${PN}_append_class-target = " libdevmapper" | 54 | RDEPENDS_${PN}_append_class-target = " libdevmapper" |
| 55 | RDEPENDS_${PN}_append_class-nativesdk = " libdevmapper" | 55 | RDEPENDS_${PN}_append_class-nativesdk = " libdevmapper" |
| 56 | 56 | ||
