diff options
author | Alex Franco <alejandro.franco@linux.intel.com> | 2015-09-25 16:03:05 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-01 07:43:32 +0100 |
commit | 249b810501f69390e8074368009a1114dbfcfaff (patch) | |
tree | 670ce3bbf203754cee5b13f809c635b79df0fd0f /meta/recipes-extended/lsb/lsb_4.1.bb | |
parent | c7548b50b9761994ede3c882e30c8bceda8bdc12 (diff) | |
download | poky-249b810501f69390e8074368009a1114dbfcfaff.tar.gz |
lsb: add lsbinitscripts and util-linux rdepends
Building a base image such as core-image-minimal with lsb and then
attempting to source /lib/lsb/init-functions, then using the start
_daemon function (to start a daemon, such as syslogd) fails, since
/lib/lsb/init-functions use functions (incl. "daemon()") from file
/etc/init.d/functions.lsbinitscripts, which is provided by package
lsbinitscripts.
Running daemon() then calls /usr/bin/mountpoint, which is provided
by util-linux.
So, lsbinitscripts has been added as an RDEPENDency in lsb, and in
turn util-linux has been added to lsbinitscripts.
[YOCTO #7732]
(From OE-Core rev: 4b1d302c60f07a39f1276a94d8c9bb34134186a3)
Signed-off-by: Alex Franco <alejandro.franco@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/lsb/lsb_4.1.bb')
-rw-r--r-- | meta/recipes-extended/lsb/lsb_4.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/lsb/lsb_4.1.bb b/meta/recipes-extended/lsb/lsb_4.1.bb index 6215b62d80..c9f6a8bd9f 100644 --- a/meta/recipes-extended/lsb/lsb_4.1.bb +++ b/meta/recipes-extended/lsb/lsb_4.1.bb | |||
@@ -9,8 +9,8 @@ LSB_CORE_x86 = "lsb-core-ia32" | |||
9 | LSB_CORE_x86-64 = "lsb-core-amd64" | 9 | LSB_CORE_x86-64 = "lsb-core-amd64" |
10 | RPROVIDES_${PN} += "${LSB_CORE}" | 10 | RPROVIDES_${PN} += "${LSB_CORE}" |
11 | 11 | ||
12 | # lsb_release needs getopt | 12 | # lsb_release needs getopt, lsbinitscripts |
13 | RDEPENDS_${PN} += "${VIRTUAL-RUNTIME_getopt}" | 13 | RDEPENDS_${PN} += "${VIRTUAL-RUNTIME_getopt} lsbinitscripts" |
14 | 14 | ||
15 | LIC_FILES_CHKSUM = "file://README;md5=12da544b1a3a5a1795a21160b49471cf" | 15 | LIC_FILES_CHKSUM = "file://README;md5=12da544b1a3a5a1795a21160b49471cf" |
16 | 16 | ||