[oe-commits] Peter A. Bigot : image.bbclass: search both rootfs and native staging for passwd files

git at git.openembedded.org git at git.openembedded.org
Tue Nov 25 13:03:53 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: 8c653bafaa32126c54400bb56b9a94f07cd33197
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=8c653bafaa32126c54400bb56b9a94f07cd33197

Author: Peter A. Bigot <pab at pabigot.com>
Date:   Fri Nov 14 22:58:16 2014 -0600

image.bbclass: search both rootfs and native staging for passwd files

When pseudo is configured to disallow fallback to the build host
/etc/hosts and /etc/group, the selection of ${IMAGE_ROOT} for
PSEUDO_PASSWD is insufficient as the necessary files will not be
available until base-passwd has been installed and its pkg_postinst
script run.  Fall back to the ${STAGING_DIR_NATIVE} version of those
files until the rootfs versions are available.  (The native copies are
never modified by the build; the ones in ${STAGING_DIR_TARGET} are
updated and may contain settings not consistent with what would be
created by post-install useradd/groupadd commands invoked in the image
rootfs.

Signed-off-by: Peter A. Bigot <pab at pabigot.com>

---

 meta/classes/image.bbclass | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index fc08653..6bbfaf8 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -175,7 +175,9 @@ IMAGE_LINGUAS ?= "de-de fr-fr en-gb"
 
 LINGUAS_INSTALL ?= "${@" ".join(map(lambda s: "locale-base-%s" % s, d.getVar('IMAGE_LINGUAS', True).split()))}"
 
-PSEUDO_PASSWD = "${IMAGE_ROOTFS}"
+# Prefer image, but use the fallback files for lookups if the image ones
+# aren't yet available.
+PSEUDO_PASSWD = "${IMAGE_ROOTFS}:${STAGING_DIR_NATIVE}"
 
 do_rootfs[dirs] = "${TOPDIR}"
 do_rootfs[lockfiles] += "${IMAGE_ROOTFS}.lock"



More information about the Openembedded-commits mailing list