Advertisement
Guest User

Untitled

a guest
Nov 6th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.69 KB | None | 0 0
  1. ERROR: core-image-xxxx-sdk-1.03-r0 do_rootfs: Error executing a python function in exec_python_func() autogenerated:
  2. The stack trace of python calls that resulted in this exception/failure was:
  3. File: 'exec_python_func() autogenerated', lineno: 2, function: <module>
  4. 0001:
  5. *** 0002:do_rootfs(d)
  6. 0003:
  7. File: '/home/alex/oe-core/build/../stuff/openembedded-core/meta/classes/image.bbclass', lineno: 261, function: do_rootfs
  8. 0257:
  9. 0258: progress_reporter.next_stage()
  10. 0259:
  11. 0260: # generate rootfs
  12. *** 0261: create_rootfs(d, progress_reporter=progress_reporter, logcatcher=logcatcher)
  13. 0262:
  14. 0263: progress_reporter.finish()
  15. 0264:}
  16. 0265:do_rootfs[dirs] = "${TOPDIR}"
  17. File: '/home/alex/oe-core/build/../stuff/openembedded-core/meta/lib/oe/rootfs.py', lineno: 1003, function: create_rootfs
  18. 0999: img_type = d.getVar('IMAGE_PKGTYPE')
  19. 1000: if img_type == "rpm":
  20. 1001: RpmRootfs(d, manifest_dir, progress_reporter, logcatcher).create()
  21. 1002: elif img_type == "ipk":
  22. *** 1003: OpkgRootfs(d, manifest_dir, progress_reporter, logcatcher).create()
  23. 1004: elif img_type == "deb":
  24. 1005: DpkgRootfs(d, manifest_dir, progress_reporter, logcatcher).create()
  25. 1006:
  26. 1007: os.environ.clear()
  27. File: '/home/alex/oe-core/build/../stuff/openembedded-core/meta/lib/oe/rootfs.py', lineno: 201, function: create
  28. 0197: if self.progress_reporter:
  29. 0198: self.progress_reporter.next_stage()
  30. 0199:
  31. 0200: # call the package manager dependent create method
  32. *** 0201: self._create()
  33. 0202:
  34. 0203: sysconfdir = self.image_rootfs + self.d.getVar('sysconfdir')
  35. 0204: bb.utils.mkdirhier(sysconfdir)
  36. 0205: with open(sysconfdir + "/version", "w+") as ver:
  37. File: '/home/alex/oe-core/build/../stuff/openembedded-core/meta/lib/oe/rootfs.py', lineno: 908, function: _create
  38. 0904: opkg_post_process_cmds = self.d.getVar('OPKG_POSTPROCESS_COMMANDS')
  39. 0905:
  40. 0906: # update PM index files, unless users provide their own feeds
  41. 0907: if (self.d.getVar('BUILD_IMAGES_FROM_FEEDS') or "") != "1":
  42. *** 0908: self.pm.write_index()
  43. 0909:
  44. 0910: execute_pre_post_process(self.d, opkg_pre_process_cmds)
  45. 0911:
  46. 0912: if self.progress_reporter:
  47. File: '/home/alex/oe-core/build/../stuff/openembedded-core/meta/lib/oe/package_manager.py', lineno: 1080, function: write_index
  48. 1076:
  49. 1077: def write_index(self):
  50. 1078: self.deploy_dir_lock()
  51. 1079:
  52. *** 1080: result = self.indexer.write_index()
  53. 1081:
  54. 1082: self.deploy_dir_unlock()
  55. 1083:
  56. 1084: if result is not None:
  57. File: '/home/alex/oe-core/build/../stuff/openembedded-core/meta/lib/oe/package_manager.py', lineno: 155, function: write_index
  58. 0151: if len(index_cmds) == 0:
  59. 0152: bb.note("There are no packages in %s!" % self.deploy_dir)
  60. 0153: return
  61. 0154:
  62. *** 0155: result = oe.utils.multiprocess_exec(index_cmds, create_index)
  63. 0156: if result:
  64. 0157: bb.fatal('%s' % ('\n'.join(result)))
  65. 0158:
  66. 0159: if signer:
  67. File: '/home/alex/oe-core/build/../stuff/openembedded-core/meta/lib/oe/utils.py', lineno: 192, function: multiprocess_exec
  68. 0188: pool = bb.utils.multiprocessingpool(nproc, init_worker)
  69. 0189: imap = pool.imap(function, commands)
  70. 0190:
  71. 0191: try:
  72. *** 0192: res = list(imap)
  73. 0193: pool.close()
  74. 0194: pool.join()
  75. 0195: results = []
  76. 0196: for result in res:
  77. File: '/usr/lib/python3.5/multiprocessing/pool.py', lineno: 695, function: next
  78. 0691:
  79. 0692: success, value = item
  80. 0693: if success:
  81. 0694: return value
  82. *** 0695: raise value
  83. 0696:
  84. 0697: __next__ = next # XXX
  85. 0698:
  86. 0699: def _set(self, i, obj):
  87. Exception: UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb0 in position 1022: invalid start byte
  88. ERROR: core-image-xxxx-sdk-1.03-r0 do_rootfs: Function failed: do_rootfs
  89. ERROR: Logfile of failure stored in: /home/alex/oe-core/build/tmp-glibc/work/xxxx_ipam400-oe-linux-gnueabi/core-image-xxxx-sdk/1.03-r0/temp/log.do_rootfs.22925
  90. ERROR: Task (/home/alex/oe-core/build/../stuff/meta-xxxx-sdk/recipes-core/images/core-image-xxxx-sdk.bb:do_rootfs) failed with exit code '1'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement