Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. The stack trace of python calls that resulted in this exception/failure was:
  2. File: 'exec_python_func() autogenerated', lineno: 2, function: <module>
  3. 0001:
  4. *** 0002:systemd_populate_packages(d)
  5. 0003:
  6. File: '/root/Work/Cust/user/src/iot-gw-base-os-yocto/yocto/sources/poky/meta/classes/systemd.bbclass', lineno: 161, function: systemd_populate_packages
  7. 0157: if os.path.exists(d.getVar("D")):
  8. 0158: for pkg in d.getVar('SYSTEMD_PACKAGES').split():
  9. 0159: systemd_check_package(pkg)
  10. 0160: if d.getVar('SYSTEMD_SERVICE_' + pkg):
  11. *** 0161: systemd_generate_package_scripts(pkg)
  12. 0162: systemd_check_services()
  13. 0163:}
  14. 0164:
  15. 0165:PACKAGESPLITFUNCS_prepend = "systemd_populate_packages "
  16. File: '/root/Work/Cust/user/src/iot-gw-base-os-yocto/yocto/sources/poky/meta/classes/systemd.bbclass', lineno: 76, function: systemd_generate_package_scripts
  17. 0072:
  18. 0073: postinst = d.getVar('pkg_postinst_%s' % pkg)
  19. 0074: if not postinst:
  20. 0075: postinst = '#!/bin/sh\n'
  21. *** 0076: postinst += localdata.getVar('systemd_postinst')
  22. 0077: d.setVar('pkg_postinst_%s' % pkg, postinst)
  23. 0078:
  24. 0079: prerm = d.getVar('pkg_prerm_%s' % pkg)
  25. 0080: if not prerm:
  26. Exception: TypeError: Can't convert 'NoneType' object to str implicitly
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement