DEBUG: Executing python function extend_recipe_sysroot
NOTE: Direct dependencies are ['/srv/pokybuild/yocto-worker/no-x11/build/layers/openembedded-core/meta/recipes-devtools/quilt/quilt-native_0.69.bb:do_populate_sysroot', 'virtual:native:/srv/pokybuild/yocto-worker/no-x11/build/layers/openembedded-core/meta/recipes-devtools/dwarfsrcfiles/dwarfsrcfiles.bb:do_populate_sysroot', 'virtual:native:/srv/pokybuild/yocto-worker/no-x11/build/layers/openembedded-core/meta/recipes-devtools/patch/patch_2.8.bb:do_populate_sysroot', 'virtual:native:/srv/pokybuild/yocto-worker/no-x11/build/layers/openembedded-core/meta/recipes-devtools/pseudo/pseudo_git.bb:do_populate_sysroot', 'virtual:native:/srv/pokybuild/yocto-worker/no-x11/build/layers/openembedded-core/meta/recipes-devtools/rpm/rpm_4.20.1.bb:do_populate_sysroot']
NOTE: Installed into sysroot: ['cmake-native', 'openssl-native', 'expat-native', 'ncurses-native', 'readline-native', 'util-linux-libuuid-native', 'zlib-native', 'dwarfsrcfiles-native', 'elfutils-native', 'file-native', 'json-c-native', 'libedit-native', 'lua-native', 'make-native', 'perl-native', 'python3-native', 'rpm-native', 'bzip2-native', 'libarchive-native', 'libidn2-native', 'lzlib-native', 'zstd-native', 'acl-native', 'curl-native', 'gdbm-native', 'gmp-native', 'gnutls-native', 'libtasn1-native', 'libcap-native', 'libffi-native', 'libgcrypt-native', 'libgpg-error-native', 'libmicrohttpd-native', 'libunistring-native', 'nettle-native', 'popt-native']
NOTE: Skipping as already exists in sysroot: ['gettext-minimal-native', 'libtool-native', 'quilt-native', 'texinfo-dummy-native', 'patch-native', 'pseudo-native', 'xz-native', 'attr-native', 'sqlite3-native']
DEBUG: sed -e 's:^[^/]*/:TOPDIR/tmp/work/qemux86_64-poky-linux/base-files/3.0.14/recipe-sysroot-native/:g' TOPDIR/tmp/sysroots-components/x86_64/openssl-native/fixmepath TOPDIR/tmp/sysroots-components/x86_64/ncurses-native/fixmepath TOPDIR/tmp/sysroots-components/x86_64/elfutils-native/fixmepath TOPDIR/tmp/sysroots-components/x86_64/lua-native/fixmepath TOPDIR/tmp/sysroots-components/x86_64/perl-native/fixmepath TOPDIR/tmp/sysroots-components/x86_64/python3-native/fixmepath TOPDIR/tmp/sysroots-components/x86_64/rpm-native/fixmepath TOPDIR/tmp/sysroots-components/x86_64/curl-native/fixmepath TOPDIR/tmp/sysroots-components/x86_64/gmp-native/fixmepath TOPDIR/tmp/sysroots-components/x86_64/libgcrypt-native/fixmepath TOPDIR/tmp/sysroots-components/x86_64/libgpg-error-native/fixmepath | xargs sed -i -e 's:FIXMESTAGINGDIRTARGET:TOPDIR/tmp/work/qemux86_64-poky-linux/base-files/3.0.14/recipe-sysroot:g; s:FIXMESTAGINGDIRHOST:TOPDIR/tmp/work/qemux86_64-poky-linux/base-files/3.0.14/recipe-sysroot-native:g' -e 's:FIXME_PSEUDO_SYSROOT:TOPDIR/tmp/sysroots-components/x86_64/pseudo-native:g' -e 's:FIXME_HOSTTOOLS_DIR:TOPDIR/tmp/hosttools:g' -e 's:FIXME_PKGDATA_DIR:TOPDIR/tmp/pkgdata/qemux86-64:g' -e 's:FIXME_PSEUDO_LOCALSTATEDIR:TOPDIR/tmp/work/qemux86_64-poky-linux/base-files/3.0.14/pseudo/:g' -e 's:FIXME_LOGFIFO:TOPDIR/tmp/work/qemux86_64-poky-linux/base-files/3.0.14/temp/fifo.3141227:g'
DEBUG: Python function extend_recipe_sysroot finished
DEBUG: Executing python function sstate_task_prefunc
DEBUG: Python function sstate_task_prefunc finished
DEBUG: Executing python function do_package
DEBUG: Executing python function package_setup_pkgv
DEBUG: Python function package_setup_pkgv finished
DEBUG: Executing python function package_convert_pr_autoinc
DEBUG: Python function package_convert_pr_autoinc finished
DEBUG: Executing python function package_prepare_pkgdata
NOTE: Installed into pkgdata-sysroot: []
DEBUG: Python function package_prepare_pkgdata finished
DEBUG: Executing python function perform_packagecopy
ERROR: Error executing a python function in exec_func_python() autogenerated:

The stack trace of python calls that resulted in this exception/failure was:
File: 'exec_func_python() autogenerated', lineno: 2, function: <module>
     0001:
 *** 0002:perform_packagecopy(d)
     0003:
File: '/srv/pokybuild/yocto-worker/no-x11/build/layers/openembedded-core/meta/classes-global/package.bbclass', lineno: 365, function: perform_packagecopy
     0361:        rpath_replace (dvar, d)
     0362:}
     0363:perform_packagecopy[cleandirs] = "${PKGD}"
     0364:perform_packagecopy[dirs] = "${PKGD}"
 *** 0365:
     0366:python populate_packages () {
     0367:    oe.package.populate_packages(d)
     0368:}
     0369:populate_packages[dirs] = "${D}"
File: '/usr/lib64/python3.9/subprocess.py', lineno: 424, function: check_output
     0420:        else:
     0421:            empty = b''
     0422:        kwargs['input'] = empty
     0423:
 *** 0424:    return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
     0425:               **kwargs).stdout
     0426:
     0427:
     0428:class CompletedProcess(object):
File: '/usr/lib64/python3.9/subprocess.py', lineno: 528, function: run
     0524:            # We don't call process.wait() as .__exit__ does that for us.
     0525:            raise
     0526:        retcode = process.poll()
     0527:        if check and retcode:
 *** 0528:            raise CalledProcessError(retcode, process.args,
     0529:                                     output=stdout, stderr=stderr)
     0530:    return CompletedProcess(process.args, retcode, stdout, stderr)
     0531:
     0532:
Exception: subprocess.CalledProcessError: Command 'tar --exclude=./sysroot-only -cf - -C TOPDIR/tmp/work/qemux86_64-poky-linux/base-files/3.0.14/image -p -S . | tar -xf - -C TOPDIR/tmp/work/qemux86_64-poky-linux/base-files/3.0.14/package' returned non-zero exit status 2.

Subprocess output:
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path games
couldn't allocate absolute path for 'games'.
tar: ./usr/games: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path lib
couldn't allocate absolute path for 'lib'.
tar: ./usr/lib: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path sbin
couldn't allocate absolute path for 'sbin'.
tar: ./usr/sbin: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path bin
couldn't allocate absolute path for 'bin'.
tar: ./usr/bin: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path src
couldn't allocate absolute path for 'src'.
tar: ./usr/src: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
tar: ./usr/share: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
tar: ./usr/share: Cannot mkdir: Bad address
tar: ./usr/share/common-licenses: Cannot mkdir: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
tar: ./usr/share: Cannot mkdir: Bad address
tar: ./usr/share/man: Cannot mkdir: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
tar: ./usr/share: Cannot mkdir: Bad address
tar: ./usr/share/doc: Cannot mkdir: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
tar: ./usr/share: Cannot mkdir: Bad address
tar: ./usr/share/doc/base-files-3.0.14: Cannot mkdir: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
tar: ./usr/share: Cannot mkdir: Bad address
tar: ./usr/share/misc: Cannot mkdir: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
tar: ./usr/share: Cannot mkdir: Bad address
tar: ./usr/share/info: Cannot mkdir: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path share
couldn't allocate absolute path for 'share'.
tar: ./usr/share: Cannot mkdir: Bad address
tar: ./usr/share/dict: Cannot mkdir: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path include
couldn't allocate absolute path for 'include'.
tar: ./usr/include: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path spool
couldn't allocate absolute path for 'spool'.
tar: ./var/spool: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path tmp
couldn't allocate absolute path for 'tmp'.
tar: ./var/tmp: Cannot create symlink to ‘volatile/tmp’: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path lib
couldn't allocate absolute path for 'lib'.
tar: ./var/lib: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path lib
couldn't allocate absolute path for 'lib'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path lib
couldn't allocate absolute path for 'lib'.
tar: ./var/lib: Cannot mkdir: Bad address
tar: ./var/lib/misc: Cannot mkdir: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path backups
couldn't allocate absolute path for 'backups'.
tar: ./var/backups: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path log
couldn't allocate absolute path for 'log'.
tar: ./var/log: Cannot create symlink to ‘volatile/log’: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path volatile
couldn't allocate absolute path for 'volatile'.
tar: ./var/volatile: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path volatile
couldn't allocate absolute path for 'volatile'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path volatile
couldn't allocate absolute path for 'volatile'.
tar: ./var/volatile: Cannot mkdir: Bad address
tar: ./var/volatile/tmp: Cannot mkdir: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path volatile
couldn't allocate absolute path for 'volatile'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path volatile
couldn't allocate absolute path for 'volatile'.
tar: ./var/volatile: Cannot mkdir: Bad address
tar: ./var/volatile/log: Cannot mkdir: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path local
couldn't allocate absolute path for 'local'.
tar: ./var/local: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path run
couldn't allocate absolute path for 'run'.
tar: ./var/run: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path lock
couldn't allocate absolute path for 'lock'.
tar: ./var/lock: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path skel
couldn't allocate absolute path for 'skel'.
tar: ./etc/skel: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path skel
couldn't allocate absolute path for 'skel'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path skel
couldn't allocate absolute path for 'skel'.
tar: ./etc/skel: Cannot mkdir: Bad address
tar: ./etc/skel/.profile: Cannot open: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path skel
couldn't allocate absolute path for 'skel'.
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path skel
couldn't allocate absolute path for 'skel'.
tar: ./etc/skel: Cannot mkdir: Bad address
tar: ./etc/skel/.bashrc: Cannot open: No such file or directory
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path host.conf
couldn't allocate absolute path for 'host.conf'.
tar: ./etc/host.conf: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path issue.net
couldn't allocate absolute path for 'issue.net'.
tar: ./etc/issue.net: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path issue
couldn't allocate absolute path for 'issue'.
tar: ./etc/issue: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path mtab
couldn't allocate absolute path for 'mtab'.
tar: ./etc/mtab: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path nsswitch.conf
couldn't allocate absolute path for 'nsswitch.conf'.
tar: ./etc/nsswitch.conf: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path profile
couldn't allocate absolute path for 'profile'.
tar: ./etc/profile: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path hostname
couldn't allocate absolute path for 'hostname'.
tar: ./etc/hostname: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path default
couldn't allocate absolute path for 'default'.
tar: ./etc/default: Cannot mkdir: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path shells
couldn't allocate absolute path for 'shells'.
tar: ./etc/shells: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path hosts
couldn't allocate absolute path for 'hosts'.
tar: ./etc/hosts: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path fstab
couldn't allocate absolute path for 'fstab'.
tar: ./etc/fstab: Cannot open: Bad address
got *at() syscall for unknown directory, fd 4
unknown base path for fd 4, path motd
couldn't allocate absolute path for 'motd'.
tar: ./etc/motd: Cannot open: Bad address
tar: Exiting with failure status due to previous errors

DEBUG: Python function perform_packagecopy finished
DEBUG: Python function do_package finished

Error details

Submitted on:
06/01/26 17:39
Error type:
Recipe
Task:
do_package
Recipe:
base-files
Recipe version:
3.0.14-r0
Machine:
qemux86-64
Distro:
poky
Build system:
x86_64-linux
Target system:
x86_64-poky-linux
Host distro:
universal/centos-9
Branch:
stable/whinlatter-nut
Commit:
b822b0f2f6122838625f38a29eea56371dd33580
Build:
#223740
Submitter:
yp-ab-stream9-vk1
Link back:
https://autobuilder.yoctoproject.org/valkyrie/#/builders/25/builds/2988
Similar errors:
1
Open a bug