This is the final piece of fixing the races in the useradd class by ensuring base-passwd, shadow-native and shadow-sysroot are installed before sstate packages which use useradd.
[YOCTO #1721] Signed-off-by: Richard Purdie <[email protected]> --- NB: This patch depends on a change in bitbake to work but is harmless without that change, just won't fix the race. diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass index 6ee575e..9677fe2 100644 --- a/meta/classes/useradd.bbclass +++ b/meta/classes/useradd.bbclass @@ -111,6 +111,8 @@ SYSROOTPOSTFUNC = "useradd_sysroot_sstate" SYSROOTPOSTFUNC_virtclass-native = "" SYSROOTPOSTFUNC_virtclass-nativesdk = "" +do_package_setscene[depends] = "base-passwd:do_populate_sysroot_setscene shadow-native:do_populate_sysroot_setscene shadow-sysroot:do_populate_sysroot_setscene" + # Recipe parse-time sanity checks def update_useradd_after_parse(d): useradd_packages = d.getVar('USERADD_PACKAGES', True) _______________________________________________ Openembedded-core mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
