I run into the same problem with Manjaro.
First tried to follow the developers manual. From which I concluded that I still have to install BitBake. Neatly made a PKGBUILD file for this. But soon found out that these are included with the code (version 1.44)
BitBake (1.44) requires at least python version 3.5.0. So Build MUST even with python3.
But I'm stuck at the same point as dax.
I already had 2 problems before I came here.
1 Error: usr / bin / ld: scripts / dtc / dtc-parser.tab.o . Bss + 0x50): multiple definition of 'yylloc'; scripts / dtc / dtc-lexer.lex.o:
solved by making an adjustment in dtc-lexer.l
YYLTYPE yylloc; -> external YYLTYPE yylloc;
Hereafter a problem because I have a gcc version that is too new (10).
2 Error: 'sys_siglist' undeclared
This solved by the following adjustment in
/build/tmp/work/x86_64-linux/groff-native/1.22.4-r0/groff-1.22.4/src/roff/groff/pipeline.c
#ifdef NSIG
#if HAVE_DECL_SYS_SIGLIST
if (n >= 0 && n < NSIG && strsignal(n) != 0)
return strsignal(n);
#endif /* HAVE_DECL_SYS_SIGLIST */
#endif /* NSIG */
sprintf(buf, "Signal %d", n);
return buf;
}
But now:
[opvolger@opvolger openpli-oe-core]$ MACHINE=sf8008 make image
Building image for sf8008
Loading cache: 100% |###################################################################################| Time: 0:00:00
Loaded 4191 entries from dependency cache.
Parsing recipes: 100% |#################################################################################| Time: 0:00:09
Parsing of 3323 .bb files complete (3031 cached, 292 parsed). 4483 targets, 620 skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies
Build Configuration:
BB_VERSION = "1.44.0"
BUILD_SYS = "x86_64-linux"
NATIVELSBSTRING = "manjaro"
TARGET_SYS = "arm-oe-linux-gnueabi"
MACHINE = "sf8008"
DISTRO = "openpli"
DISTRO_VERSION = "homebuild"
TUNE_FEATURES = "arm vfp cortexa15 neon vfpv4 callconvention-hard"
TARGET_FPU = "hard"
meta-oe
meta-filesystems
meta-multimedia
meta-networking
meta-python
meta-webserver = "HEAD:2b5dd1eb81cd08bc065bc76125f2856e9383e98b"
meta = "HEAD:db8ceed8f2eca92a4cffe8295481d8041281fdd0"
meta-openpli = "develop:bd5de639eadfedb62a2799ae42b98e84346cf915"
meta-dream = "HEAD:ee521e211359ff0a1c96aba732d341c8c7542795"
meta-vuplus = "HEAD:11ee3e3a340301b94c237c9917a3df5a34f3d82f"
meta-xsarius.pli5 = "HEAD:aeff9d3f0ca0426204e0cfe71ee2d146c3a4bd22"
meta-qviart = "HEAD:658b202860d2474e6856d95b3a864ffe6fc18338"
meta-xp = "HEAD:06604806bd0979fa7551d7509b7d331649c3c9d7"
meta-xtrend = "HEAD:26b5218d7312f85bbb9dc829df81b55862a4be75"
meta-formuler = "HEAD:7d357becbc8aca5ac952ff9b435054790402ff4a"
meta-gfutures = "HEAD:fa638ecd9b8b69d823a9852034f649b75e8007c7"
meta-xpeedc = "HEAD:c2c48cfc36b2eb443e56df9de3f93e4051ed16e0"
meta-zgemma = "HEAD:87f3c9785b60b44431873a8c55ed51bb19cf818f"
meta-edision = "HEAD:04c0e16d8fd5c1ceaab74340aeaa1e36cfe36457"
meta-miraclebox = "HEAD:85fa16b86a70d073bbf8d5c9c2b0173dcc177489"
meta-spycat = "HEAD:efddb7b23bb78b636bc4340d8f49f865d1fa702e"
meta-gi = "HEAD:09bca41908b28666cd5e7b0a816b81248cd9d574"
meta-sab = "HEAD:2785e19a5ccd9b700758c9dd12319c2cb12f5c70"
meta-gigablue = "HEAD:f28d6b436e215a21b75274b29686befe5b4780ea"
meta-amiko = "HEAD:94c7bb8f27fd45742a6d21492007e2534fbe9012"
meta-axasuhd = "HEAD:2ded7f8166040d0c5a46c4f34bfd32da66677def"
meta-maxytec = "HEAD:edf7e3614970fb2a8ac2e68de319bbb8ec717237"
meta-octagon = "HEAD:e5dd0cdbdd9aed10e237985bd2602dc7a30895d3"
meta-uclan = "HEAD:9e1d46d597c34f5cc23080fa9cc36561c127aa21"
meta-local = "develop:bd5de639eadfedb62a2799ae42b98e84346cf915"
meta-qt5 = "HEAD:852e279a45da2b68719fecdaad3573b2ada9558c"
Initialising tasks: 100% |##############################################################################| Time: 0:00:04
Sstate summary: Wanted 1796 Found 4 Missed 1792 Current 317 (0% match, 15% complete)
NOTE: Executing Tasks
NOTE: Setscene tasks completed
ERROR: initscripts-1.0-r155 do_package: Fatal errors occurred in subprocesses:
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/rmnologin.sh']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/rmnologin.sh']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/mountnfs.sh']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/mountnfs.sh']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/rmnologin.sh']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/rmnologin.sh']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/mountnfs.sh']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/mountnfs.sh']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/halt']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/halt']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/sendsigs']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/sendsigs']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/umountnfs.sh']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/package/etc/init.d/umountnfs.sh']' died with <Signals.SIGSYS: 31>.
ERROR: Logfile of failure stored in: /home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/initscripts/1.0-r155/temp/log.do_package.1886043
ERROR: Task (/home/opvolger/code/openpli-oe-core/openembedded-core/meta/recipes-core/initscripts/initscripts_1.0.bb:do_package) failed with exit code '1'
ERROR: base-files-3.0.14-r89 do_package: Fatal errors occurred in subprocesses:
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/sf8008-oe-linux-gnueabi/base-files/3.0.14-r89/package/etc/skel/.bashrc']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/sf8008-oe-linux-gnueabi/base-files/3.0.14-r89/package/etc/skel/.bashrc']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/sf8008-oe-linux-gnueabi/base-files/3.0.14-r89/package/etc/skel/.profile']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/sf8008-oe-linux-gnueabi/base-files/3.0.14-r89/package/etc/skel/.profile']' died with <Signals.SIGSYS: 31>.
ERROR: Logfile of failure stored in: /home/opvolger/code/openpli-oe-core/build/tmp/work/sf8008-oe-linux-gnueabi/base-files/3.0.14-r89/temp/log.do_package.1886067
ERROR: Task (/home/opvolger/code/openpli-oe-core/openembedded-core/meta/recipes-core/base-files/base-files_3.0.14.bb:do_package) failed with exit code '1'
ERROR: glibc-2.30-r0 do_package: Fatal errors occurred in subprocesses:
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libc-2.30.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libc-2.30.so']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libdl-2.30.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libdl-2.30.so']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libutil-2.30.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libutil-2.30.so']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libanl-2.30.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libanl-2.30.so']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libresolv-2.30.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libresolv-2.30.so']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libnss_hesiod-2.30.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libnss_hesiod-2.30.so']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libnss_compat-2.30.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libnss_compat-2.30.so']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libpthread-2.30.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libpthread-2.30.so']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libm-2.30.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libm-2.30.so']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libBrokenLocale-2.30.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libBrokenLocale-2.30.so']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libnss_db-2.30.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libnss_db-2.30.so']' died with <Signals.SIGSYS: 31>.
Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libthread_db-1.0.so']' died with <Signals.SIGSYS: 31>.: Traceback (most recent call last):
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/utils.py", line 276, in run
ret = self._target(*self._args, **self._kwargs)
File "/home/opvolger/code/openpli-oe-core/openembedded-core/meta/lib/oe/package.py", line 74, in is_elf
result = subprocess.check_output(["file", "-b", path], stderr=subprocess.STDOUT).decode("utf-8")
File "/usr/lib/python3.8/subprocess.py", line 411, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/usr/lib/python3.8/subprocess.py", line 512, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['file', '-b', '/home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/package/lib/libthread_db-1.0.so']' died with <Signals.SIGSYS: 31>.
ERROR: Logfile of failure stored in: /home/opvolger/code/openpli-oe-core/build/tmp/work/cortexa15hf-neon-vfpv4-oe-linux-gnueabi/glibc/2.30-r0/temp/log.do_package.1886013
ERROR: Task (/home/opvolger/code/openpli-oe-core/openembedded-core/meta/recipes-core/glibc/glibc_2.30.bb:do_package) failed with exit code '1'
NOTE: Tasks Summary: Attempted 1552 tasks of which 1537 didn't need to be rerun and 3 failed.
Summary: 3 tasks failed:
/home/opvolger/code/openpli-oe-core/openembedded-core/meta/recipes-core/initscripts/initscripts_1.0.bb:do_package
/home/opvolger/code/openpli-oe-core/openembedded-core/meta/recipes-core/base-files/base-files_3.0.14.bb:do_package
/home/opvolger/code/openpli-oe-core/openembedded-core/meta/recipes-core/glibc/glibc_2.30.bb:do_package
Summary: There were 3 ERROR messages shown, returning a non-zero exit code.
make: *** [Makefile:129: image] Error 1