summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-07 17:34:07 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-08 15:24:27 +0000
commit2e027278607737aed3c1349eaf6207556ef16bff (patch)
tree41ec82d6cd82714abbf7cb7e9d5a0e81e6ad2c2a /meta/conf/bitbake.conf
parentcb5a16f0641837fcea53edbc8921453cf7708da7 (diff)
downloadpoky-2e027278607737aed3c1349eaf6207556ef16bff.tar.gz
bitbake.conf/image.bbclass: Ensure images use the correct passwd/group files
We need pseudo to use the rootfs passwd/group files belonging to the rootfs when building images. This patch ensures that we use the rootfs files instead of those in the sysroot which can lead to incorrect file ownership issues. (From OE-Core rev: c4da803ef78322b758380eb0af0dcb73cae6553c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index e80cc32b7d..eeb1fc4abd 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -580,11 +580,12 @@ SRC_URI = "file://${FILE}"
580 580
581# Use pseudo as the fakeroot implementation 581# Use pseudo as the fakeroot implementation
582PSEUDO_LOCALSTATEDIR ?= "${WORKDIR}/pseudo/" 582PSEUDO_LOCALSTATEDIR ?= "${WORKDIR}/pseudo/"
583PSEUDO_PASSWD ?= "${STAGING_DIR_TARGET}"
583export PSEUDO_DISABLED = "1" 584export PSEUDO_DISABLED = "1"
584#export PSEUDO_PREFIX = "${STAGING_DIR_NATIVE}${prefix_native}" 585#export PSEUDO_PREFIX = "${STAGING_DIR_NATIVE}${prefix_native}"
585#export PSEUDO_BINDIR = "${STAGING_DIR_NATIVE}${bindir_native}" 586#export PSEUDO_BINDIR = "${STAGING_DIR_NATIVE}${bindir_native}"
586#export PSEUDO_LIBDIR = "${STAGING_DIR_NATIVE}$PSEUDOBINDIR/../lib/pseudo/lib 587#export PSEUDO_LIBDIR = "${STAGING_DIR_NATIVE}$PSEUDOBINDIR/../lib/pseudo/lib
587FAKEROOTENV = "PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} PSEUDO_LOCALSTATEDIR=${PSEUDO_LOCALSTATEDIR} PSEUDO_PASSWD=${STAGING_DIR_TARGET} PSEUDO_NOSYMLINKEXP=1 PSEUDO_DISABLED=0" 588FAKEROOTENV = "PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} PSEUDO_LOCALSTATEDIR=${PSEUDO_LOCALSTATEDIR} PSEUDO_PASSWD=${PSEUDO_PASSWD} PSEUDO_NOSYMLINKEXP=1 PSEUDO_DISABLED=0"
588FAKEROOTNOENV = "PSEUDO_UNLOAD=1" 589FAKEROOTNOENV = "PSEUDO_UNLOAD=1"
589FAKEROOTDIRS = "${PSEUDO_LOCALSTATEDIR}" 590FAKEROOTDIRS = "${PSEUDO_LOCALSTATEDIR}"
590PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native" 591PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native"