summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorChen Qi <qi.chen@windriver.com>2013-10-21 10:42:29 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-12 17:00:02 +0000
commitfc9f1c8168118010602f4e43ad954173e95cf63c (patch)
tree3ecf67c1fe30bd774d54d374c98557218525579d /scripts
parent34f6dcf06cc58bc6a9044e8c5fa94dc2f02e5032 (diff)
downloadpoky-fc9f1c8168118010602f4e43ad954173e95cf63c.tar.gz
runqemu-extract-sdk: add --numeric-owner option to tar command
If the same username exists on both target and the build host, but the uids differ, and we start target via NFS, then the uid for the user will be incorrect on target. For example, if postfix's uid on host is 119 and on target is 1024, then if we start target via NFS, the uid for postfix will be 119. The root cause is that when we use runqemu-extract-sdk to generate the NFS rootfs for later use, the tar command will respect the username instead of uid. So if PSEUDO_PASSWD environment is not set correctly, the host /etc/passwd will be used, resulting in wrong uids. The situation for gid is completely analogous to that of uid. It's almost impossible for the runqemu-extract-sdk to guess the correct location of the needed password file merely based on the target tarball name. This patch solves this problem by adding the '--numeric-owner' option to the tar command so that the uid/gid will be used when extracting the tarball using runqemu-extract-sdk. In this situation, we'll always get the correct uid/gid after extracting the tarball. [YOCTO #5364] (From OE-Core master rev: acce6ff1a77cfd29e3868faa89b120becb58bbbf) (From OE-Core rev: c2baac739a521d1edd408a24f6b1fece8f755218) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu-extract-sdk6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/runqemu-extract-sdk b/scripts/runqemu-extract-sdk
index 509af66216..4ce906aef0 100755
--- a/scripts/runqemu-extract-sdk
+++ b/scripts/runqemu-extract-sdk
@@ -54,13 +54,13 @@ fi
54 54
55TAR_OPTS="" 55TAR_OPTS=""
56if [[ "$ROOTFS_TARBALL" =~ tar\.bz2$ ]]; then 56if [[ "$ROOTFS_TARBALL" =~ tar\.bz2$ ]]; then
57 TAR_OPTS="-xjf" 57 TAR_OPTS="--numeric-owner -xjf"
58fi 58fi
59if [[ "$ROOTFS_TARBALL" =~ tar\.gz$ ]]; then 59if [[ "$ROOTFS_TARBALL" =~ tar\.gz$ ]]; then
60 TAR_OPTS="-xzf" 60 TAR_OPTS="--numeric-owner -xzf"
61fi 61fi
62if [[ "$ROOTFS_TARBALL" =~ \.tar$ ]]; then 62if [[ "$ROOTFS_TARBALL" =~ \.tar$ ]]; then
63 TAR_OPTS="-xf" 63 TAR_OPTS="--numeric-owner -xf"
64fi 64fi
65if [ -z "$TAR_OPTS" ]; then 65if [ -z "$TAR_OPTS" ]; then
66 echo "Error: Unable to determine sdk tarball format" 66 echo "Error: Unable to determine sdk tarball format"