summaryrefslogtreecommitdiffstats
path: root/meta/classes/image_types.bbclass
diff options
context:
space:
mode:
authorMax Krummenacher <max.oss.09@gmail.com>2018-01-27 14:54:08 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-02-06 11:06:27 +0000
commit8a8c31db1a98806c331d790187ea3bf30608df29 (patch)
tree9588a955c3c296f89f95d81f8cd332464eccbccb /meta/classes/image_types.bbclass
parent0da28271bfcf9a84cefc89a193d7fa703f639469 (diff)
downloadpoky-8a8c31db1a98806c331d790187ea3bf30608df29.tar.gz
image_types: tar with --numeric-owner
If --numeric-owner is neither used when creating or extracting the archive containing the rootfs then tar tries to change the numeric uid/gid of the files based on user/group names of the host used to extract the archive. Create the archive with --numeric-owner to remove the burden of having to use --numeric-owner when extracting. (From OE-Core rev: 061e04cb6335a10f560e57255b7335b8c9891207) Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image_types.bbclass')
-rw-r--r--meta/classes/image_types.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass
index ae3e6edef3..cde27e52b5 100644
--- a/meta/classes/image_types.bbclass
+++ b/meta/classes/image_types.bbclass
@@ -125,7 +125,7 @@ IMAGE_CMD_squashfs-lz4 = "mksquashfs ${IMAGE_ROOTFS} ${IMGDEPLOYDIR}/${IMAGE_NAM
125# required when extracting, but it seems prudent to use it in both cases. 125# required when extracting, but it seems prudent to use it in both cases.
126IMAGE_CMD_TAR ?= "tar" 126IMAGE_CMD_TAR ?= "tar"
127# ignore return code 1 "file changed as we read it" as other tasks(e.g. do_image_wic) may be hardlinking rootfs 127# ignore return code 1 "file changed as we read it" as other tasks(e.g. do_image_wic) may be hardlinking rootfs
128IMAGE_CMD_tar = "${IMAGE_CMD_TAR} -cf ${IMGDEPLOYDIR}/${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.tar -C ${IMAGE_ROOTFS} . || [ $? -eq 1 ]" 128IMAGE_CMD_tar = "${IMAGE_CMD_TAR} --numeric-owner -cf ${IMGDEPLOYDIR}/${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.tar -C ${IMAGE_ROOTFS} . || [ $? -eq 1 ]"
129 129
130do_image_cpio[cleandirs] += "${WORKDIR}/cpio_append" 130do_image_cpio[cleandirs] += "${WORKDIR}/cpio_append"
131IMAGE_CMD_cpio () { 131IMAGE_CMD_cpio () {