Jump to content


Opvolger

Member Since 26 Jun 2018
Offline Last Active 05 Apr 2021 19:47
-----

Posts I've Made

In Topic: Enigma2 plugins development in VS Code with Docker

3 April 2021 - 13:47

First of all, I want to thank you for the neat explanation of setting up Docker with enigma2. That in itself works well. I see that my breakpoint is working with loading. Unfortunately when I click on F4 to select my plugin I get the following stack trace:

Traceback (most recent call last):
  File "/usr/lib/enigma2/python/Components/ActionMap.py", line 49, in action
    res = self.actions[action]()
  File "/usr/lib/enigma2/python/Screens/InfoBarGenerics.py", line 2193, in showExtensionSelection
    self.session.openWithCallback(self.extensionCallback, ChoiceBox, title=_("Please choose an extension..."), list=list, keys=keys, skin_name="ExtensionsList", reorderConfig="extension_order", windowTitle=_("Extensions menu"))
  File "/usr/lib/enigma2/python/mytest.py", line 289, in openWithCallback
    dlg = self.open(screen, *arguments, **kwargs)
  File "/usr/lib/enigma2/python/mytest.py", line 299, in open
    dlg = self.current_dialog = self.instantiateDialog(screen, *arguments, **kwargs)
  File "/usr/lib/enigma2/python/mytest.py", line 242, in instantiateDialog
    return self.doInstantiateDialog(screen, arguments, kwargs, self.desktop)
  File "/usr/lib/enigma2/python/mytest.py", line 266, in doInstantiateDialog
    dlg.applySkin()
  File "/usr/lib/enigma2/python/Components/GUISkin.py", line 154, in applySkin
    self.createGUIScreen(self.instance, self.desktop)
  File "/usr/lib/enigma2/python/Components/GUISkin.py", line 55, in createGUIScreen
    exec f in globals(), locals()
  File "skin applet", line 1, in <module>
  File "/usr/lib/enigma2/python/Screens/ChoiceBox.py", line 119, in autoResize
    wsizex = x_width(textsize[0]) + x_offset() + 10 + scrollbar
  File "/usr/lib/enigma2/python/Screens/ChoiceBox.py", line 105, in x_width
    return max(max([getListLineTextWidth(line[0][0]) for line in self["list"].list]), textsize)
ValueError: max() arg is an empty sequence
[ePyObject] (CallObject(<bound method HelpableActionMap.action of <Components.ActionMap.HelpableActionMap instance at 0x7f16d4234640>>,('InfobarExtensions', 'extensions')) failed)
[gRC] main thread is non-idle! display spinner!
The terminal process "docker 'exec', '-it', '-e', 'ENIGMA_DEBUG_LVL=5', 'enigma2', '/usr/bin/enigma2', '/opt/mytest-ptvsd.py'" terminated with exit code: 137. 
and a greenscreen of dead..... in VNC.
 
 
my hack for now: 
118                 offset = self["list"].l.getItemSize().height() * count
119                 wsizex = 512 #x_width(textsize[0]) + x_offset() + 10 + scrollbar
120                 #precount description size
121                 descrsize = self["description"].getSize()
122                 self["description"].instance.resize(enigma.eSize(*(wsizex - 20, descrsize[1] if descrsize[1] > 0 else 0)))
123                 # then get true description height
124                 descriptionHeight = 50 #getMaxDescriptionHeight()
125                 wsizey = textsize[1] + offset + descriptionHeight

But I can develop my addon now.... many thnx for that.


In Topic: python3 python-wifi module

30 January 2021 - 22:33

I wouldn’t look too much into single python packages. Better first start with e2 itself. There is enough code which is not python3 compatible. For several things there are tools to fix it, but you still need manual work.

Edit: And helping hands are always welcome ;)

 

can you easily start e2 (locally)? That will make debugging and modifying code a lot easier. That is the reason that I now took 1 module. I could run and test these locally.


In Topic: python3 python-wifi module

9 January 2021 - 17:40

I think you have to start somewhere. So check libraries that may already support python3 and update them. (still with python2, but update). Then you will automatically have the libraries that cannot be transferred to python3, so you have to look for alternatives or convert them yourself. Then you can worry about all the plugins


In Topic: python3 python-wifi module

3 January 2021 - 23:15

Kodi now has the same problem, but now take the big step with version Matrix. Ultimately, everything has to be over, because you cannot miss the new functionality. For example, there will be newer SSL / TLS versions or something else that will no longer work in python2 (plugins). I hope converting python wifi is one step in your process. Python is not too difficult a language for me and a night rewriting a module I can do more than once if necessary. Not 1000+ plugins :)


In Topic: Thud branch.

19 December 2020 - 22:38

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