summaryrefslogtreecommitdiffstats
path: root/meta/classes/useradd.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-21 13:59:19 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-21 16:48:51 +0000
commit0b640a419cbc19752390cca35440707b9bfae0fa (patch)
tree8f70f86872d454cc6946c4d01895a4c1c0d0f630 /meta/classes/useradd.bbclass
parent6aa658495b028cd1301b9892fdc19a1b67ff06ca (diff)
downloadpoky-0b640a419cbc19752390cca35440707b9bfae0fa.tar.gz
useradd: Ensure -native recipes don't depend on target recipes
Without this change, dbus-native can end up depending upon base-passwd for example. This change mirrors the existing nativesdk code. Based on a patch from Henning Heinold <heinold@inf.fu-berlin.de> but with some additions from me. (From OE-Core rev: eba81d1c606ec29ffb793c1cb3cfed9562d552bc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/useradd.bbclass')
-rw-r--r--meta/classes/useradd.bbclass3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/useradd.bbclass b/meta/classes/useradd.bbclass
index 928f619b7c..ef1a9cec9f 100644
--- a/meta/classes/useradd.bbclass
+++ b/meta/classes/useradd.bbclass
@@ -3,6 +3,7 @@
3# and support files needed to add and modify user and group accounts 3# and support files needed to add and modify user and group accounts
4DEPENDS_append = "${USERADDDEPENDS}" 4DEPENDS_append = "${USERADDDEPENDS}"
5USERADDDEPENDS = " base-passwd shadow-native shadow-sysroot shadow" 5USERADDDEPENDS = " base-passwd shadow-native shadow-sysroot shadow"
6USERADDDEPENDS_virtclass-native = ""
6USERADDDEPENDS_virtclass-nativesdk = "" 7USERADDDEPENDS_virtclass-nativesdk = ""
7 8
8# This preinstall function will be run in two contexts: once for the 9# This preinstall function will be run in two contexts: once for the
@@ -97,9 +98,11 @@ useradd_sysroot_sstate () {
97 98
98do_install[prefuncs] += "${SYSROOTFUNC}" 99do_install[prefuncs] += "${SYSROOTFUNC}"
99SYSROOTFUNC = "useradd_sysroot" 100SYSROOTFUNC = "useradd_sysroot"
101SYSROOTFUNC_virtclass-native = ""
100SYSROOTFUNC_virtclass-nativesdk = "" 102SYSROOTFUNC_virtclass-nativesdk = ""
101SSTATEPOSTINSTFUNCS += "${SYSROOTPOSTFUNC}" 103SSTATEPOSTINSTFUNCS += "${SYSROOTPOSTFUNC}"
102SYSROOTPOSTFUNC = "useradd_sysroot_sstate" 104SYSROOTPOSTFUNC = "useradd_sysroot_sstate"
105SYSROOTPOSTFUNC_virtclass-native = ""
103SYSROOTPOSTFUNC_virtclass-nativesdk = "" 106SYSROOTPOSTFUNC_virtclass-nativesdk = ""
104 107
105# Recipe parse-time sanity checks 108# Recipe parse-time sanity checks