diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-07 14:33:30 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-11 23:05:13 +0000 |
commit | 7ba056c19b59eadd0d9ba93b1bb854915e2d8201 (patch) | |
tree | f809ad271b5a55d6ad90c8a9f41375b894ce5c08 /meta/recipes-core | |
parent | 5737722432ce26d961c3fb556651056aedb34526 (diff) | |
download | poky-7ba056c19b59eadd0d9ba93b1bb854915e2d8201.tar.gz |
sysvinit: Fix Reproducibility issue
With a sequence like:
bitbake sysvinit
bitbake sysvinit -c clean
bitbake sysvinit -c package_write_ipk -f
then the resulting package has two files with group "root/70" rather
than "root/shutdown". The issue is that of do_package is a setscene
task, base-passwd isn't present. This patch fixes that dependency
but there may be other cases of this problem around.
[YOCTO #13776]
(From OE-Core rev: 0227e929021263c51d2e7db36224000fecb01f1c)
(From OE-Core rev: cbcba43c18d67aea0ba41f019b357fbec6570ee1)
(From OE-Core rev: bde90e407c8ae0b851534ae84d9d54980e908046)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb index bfc1283f73..39f612be1f 100644 --- a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb +++ b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb | |||
@@ -31,6 +31,7 @@ B = "${S}/src" | |||
31 | 31 | ||
32 | inherit update-alternatives distro_features_check | 32 | inherit update-alternatives distro_features_check |
33 | DEPENDS_append = " update-rc.d-native base-passwd virtual/crypt" | 33 | DEPENDS_append = " update-rc.d-native base-passwd virtual/crypt" |
34 | do_package_setscene[depends] = "${MLPREFIX}base-passwd:do_populate_sysroot" | ||
34 | 35 | ||
35 | REQUIRED_DISTRO_FEATURES = "sysvinit" | 36 | REQUIRED_DISTRO_FEATURES = "sysvinit" |
36 | 37 | ||