[oe-commits] [openembedded-core] 12/31: sysvinit: Fix install order/dependency

git at git.openembedded.org git at git.openembedded.org
Fri Feb 28 07:47:20 UTC 2020


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit b7c2b67e002435cb8c70ae7d97ca9ebd4a507881
Author: Mark Hatle <mark.hatle at kernel.crashing.org>
AuthorDate: Tue Feb 25 11:49:29 2020 -0600

    sysvinit: Fix install order/dependency
    
    It is possible for sysvinit to be installed before the passwd/group
    files are installed from base-passwd.  This results in an warning that
    the shutdown group can't be found.
    
    Adding a dependeny on base-passwd will resolve this issue.
    
    This has similar symptoms to the problem that oe-core commit
    0227e929021263c51d2e7db36224000fecb01f1c fixed.  The fix is simular in that
    it ensures that base-passwd is installed first, just at runtime vs setscene
    time.
    
    Signed-off-by: Mark Hatle <mark.hatle at kernel.crashing.org>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-core/sysvinit/sysvinit_2.96.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/sysvinit/sysvinit_2.96.bb b/meta/recipes-core/sysvinit/sysvinit_2.96.bb
index 21ef0e9..63c1084 100644
--- a/meta/recipes-core/sysvinit/sysvinit_2.96.bb
+++ b/meta/recipes-core/sysvinit/sysvinit_2.96.bb
@@ -70,7 +70,7 @@ FILES_${PN} += "${base_sbindir}/* ${base_bindir}/*"
 FILES_sysvinit-pidof = "${base_bindir}/pidof.sysvinit ${base_sbindir}/killall5"
 FILES_sysvinit-sulogin = "${base_sbindir}/sulogin.sysvinit"
 
-RDEPENDS_${PN} += "sysvinit-pidof initd-functions"
+RDEPENDS_${PN} += "sysvinit-pidof initd-functions base-passwd"
 
 CFLAGS_prepend = "-D_GNU_SOURCE "
 export LCRYPT = "-lcrypt"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list