* [PATCH] useradd.bbclass: Execute user addition code before do_package_setscene, not after do_populate_sysroot_setscene
@ 2012-01-26 14:41 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2012-01-26 14:41 UTC (permalink / raw)
To: openembedded-core
The user addition needs to happen before the do_package files are extracted
by do_package_setscene since those are the ones we need to preserve the file
ownership information for. This patch ensures this happens.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass
index e460f56..6ee575e 100644
--- a/meta/classes/useradd.bbclass
+++ b/meta/classes/useradd.bbclass
@@ -96,7 +96,7 @@ useradd_sysroot () {
}
useradd_sysroot_sstate () {
- if [ "${BB_CURRENTTASK}" = "populate_sysroot_setscene" ]
+ if [ "${BB_CURRENTTASK}" = "package_setscene" ]
then
useradd_sysroot
fi
@@ -106,7 +106,7 @@ do_install[prefuncs] += "${SYSROOTFUNC}"
SYSROOTFUNC = "useradd_sysroot"
SYSROOTFUNC_virtclass-native = ""
SYSROOTFUNC_virtclass-nativesdk = ""
-SSTATEPOSTINSTFUNCS += "${SYSROOTPOSTFUNC}"
+SSTATEPREINSTFUNCS += "${SYSROOTPOSTFUNC}"
SYSROOTPOSTFUNC = "useradd_sysroot_sstate"
SYSROOTPOSTFUNC_virtclass-native = ""
SYSROOTPOSTFUNC_virtclass-nativesdk = ""
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-01-26 14:49 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-26 14:41 [PATCH] useradd.bbclass: Execute user addition code before do_package_setscene, not after do_populate_sysroot_setscene Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox