Advertisement
Guest User

Untitled

a guest
Feb 18th, 2021
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.76 KB | None | 0 0
  1. [nath@arch-nath rpi-build]$ bitbake core-image-base
  2. WARNING: Host distribution "arch" has not been validated with this version of the build system; you may possibly experience unexpected failures. It is recommended that you use a tested distribution.
  3. Loading cache: 100% |#####################################################################################################| Time: 0:00:00
  4. Loaded 3527 entries from dependency cache.
  5. NOTE: Resolving any missing task queue dependencies
  6.  
  7. Build Configuration:
  8. BB_VERSION = "1.48.0"
  9. BUILD_SYS = "x86_64-linux"
  10. NATIVELSBSTRING = "arch"
  11. TARGET_SYS = "arm-poky-linux-gnueabi"
  12. MACHINE = "raspberrypi2"
  13. DISTRO = "poky"
  14. DISTRO_VERSION = "3.2.2"
  15. TUNE_FEATURES = "arm vfp cortexa7 neon vfpv4 thumb callconvention-hard"
  16. TARGET_FPU = "hard"
  17. meta
  18. meta-poky
  19. meta-yocto-bsp = "gatesgarth:d5d6286a66f46f4523e35e0e3f20cd7396195fdc"
  20. meta-oe
  21. meta-multimedia
  22. meta-networking
  23. meta-python = "gatesgarth:cef93b7b00e620d90a610112ee574fa60b691cf8"
  24. meta-raspberrypi = "gatesgarth:09a3c11696c75593f8e475da5dfb401016c6aaca"
  25.  
  26. WARNING: Your host glibc version (2.33) is newer than that in uninative (2.32). Disabling uninative so that sstate is not corrupted.
  27. Initialising tasks: 100% |################################################################################################| Time: 0:00:01
  28. Sstate summary: Wanted 1541 Found 0 Missed 1541 Current 256 (0% match, 14% complete)
  29. NOTE: Executing Tasks
  30. WARNING: initscripts-1.0-r155 do_package: KeyError in ./package/etc/rc0.d/S20sendsigs
  31. ERROR: initscripts-1.0-r155 do_package: Error executing a python function in exec_python_func() autogenerated:
  32.  
  33. The stack trace of python calls that resulted in this exception/failure was:
  34. File: 'exec_python_func() autogenerated', lineno: 2, function: <module>
  35. 0001:
  36. *** 0002:sstate_report_unihash(d)
  37. 0003:
  38. File: '/home/nath/stan/yocto/poky/meta/classes/sstate.bbclass', lineno: 844, function: sstate_report_unihash
  39. 0840: report_unihash = getattr(bb.parse.siggen, 'report_unihash', None)
  40. 0841:
  41. 0842: if report_unihash:
  42. 0843: ss = sstate_state_fromvars(d)
  43. *** 0844: report_unihash(os.getcwd(), ss['task'], d)
  44. 0845:}
  45. 0846:
  46. 0847:#
  47. 0848:# Shell function to decompress and prepare a package for installation
  48. File: '/home/nath/stan/yocto/poky/bitbake/lib/bb/siggen.py', lineno: 596, function: report_unihash
  49. 0592:
  50. 0593: if "." in self.method:
  51. 0594: (module, method) = self.method.rsplit('.', 1)
  52. 0595: locs['method'] = getattr(importlib.import_module(module), method)
  53. *** 0596: outhash = bb.utils.better_eval('method(path, sigfile, task, d)', locs)
  54. 0597: else:
  55. 0598: outhash = bb.utils.better_eval(self.method + '(path, sigfile, task, d)', locs)
  56. 0599:
  57. 0600: try:
  58. File: '/home/nath/stan/yocto/poky/bitbake/lib/bb/utils.py', lineno: 420, function: better_eval
  59. 0416: if extraglobals:
  60. 0417: ctx = copy.copy(ctx)
  61. 0418: for g in extraglobals:
  62. 0419: ctx[g] = extraglobals[g]
  63. *** 0420: return eval(source, ctx, locals)
  64. 0421:
  65. 0422:@contextmanager
  66. 0423:def fileslocked(files):
  67. 0424: """Context manager for locking and unlocking file locks."""
  68. File: '<string>', lineno: 1, function: <module>
  69. File "<string>", line 1, in <module>
  70.  
  71. File: '/home/nath/stan/yocto/poky/meta/lib/oe/sstatesig.py', lineno: 604, function: OEOuthashBasic
  72. 0600: process(root)
  73. 0601: for f in files:
  74. 0602: if f == 'fixmepath':
  75. 0603: continue
  76. *** 0604: process(os.path.join(root, f))
  77. 0605: finally:
  78. 0606: os.chdir(prev_dir)
  79. 0607:
  80. 0608: return h.hexdigest()
  81. File: '/home/nath/stan/yocto/poky/meta/lib/oe/sstatesig.py', lineno: 564, function: process
  82. 0560: except KeyError as e:
  83. 0561: bb.warn("KeyError in %s" % path)
  84. 0562: msg = ("KeyError: %s\nPath %s is owned by uid %d, gid %d, which doesn't match "
  85. 0563: "any user/group on target. This may be due to host contamination." % (e, path, s.st_uid, s.st_gid))
  86. *** 0564: raise Exception(msg).with_traceback(e.__traceback__)
  87. 0565:
  88. 0566: if include_timestamps:
  89. 0567: update_hash(" %10d" % s.st_mtime)
  90. 0568:
  91. File: '/home/nath/stan/yocto/poky/meta/lib/oe/sstatesig.py', lineno: 558, function: process
  92. 0554: add_perm(stat.S_IXOTH, 'x')
  93. 0555:
  94. 0556: if include_owners:
  95. 0557: try:
  96. *** 0558: update_hash(" %10s" % pwd.getpwuid(s.st_uid).pw_name)
  97. 0559: update_hash(" %10s" % grp.getgrgid(s.st_gid).gr_name)
  98. 0560: except KeyError as e:
  99. 0561: bb.warn("KeyError in %s" % path)
  100. 0562: msg = ("KeyError: %s\nPath %s is owned by uid %d, gid %d, which doesn't match "
  101. Exception: Exception: KeyError: 'getpwuid(): uid not found: 1000'
  102. Path ./package/etc/rc0.d/S20sendsigs is owned by uid 1000, gid 1000, which doesn't match any user/group on target. This may be due to host contamination.
  103.  
  104. ERROR: Logfile of failure stored in: /home/nath/stan/yocto/poky/rpi-build/tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/initscripts/1.0-r155/temp/log.do_package.1926948
  105. ERROR: Task (/home/nath/stan/yocto/poky/meta/recipes-core/initscripts/initscripts_1.0.bb:do_package) failed with exit code '1'
  106. WARNING: base-files-3.0.14-r89 do_package: KeyError in ./package/etc/motd
  107. ERROR: base-files-3.0.14-r89 do_package: Error executing a python function in exec_python_func() autogenerated:
  108.  
  109. The stack trace of python calls that resulted in this exception/failure was:
  110. File: 'exec_python_func() autogenerated', lineno: 2, function: <module>
  111. 0001:
  112. *** 0002:sstate_report_unihash(d)
  113. 0003:
  114. File: '/home/nath/stan/yocto/poky/meta/classes/sstate.bbclass', lineno: 844, function: sstate_report_unihash
  115. 0840: report_unihash = getattr(bb.parse.siggen, 'report_unihash', None)
  116. 0841:
  117. 0842: if report_unihash:
  118. 0843: ss = sstate_state_fromvars(d)
  119. *** 0844: report_unihash(os.getcwd(), ss['task'], d)
  120. 0845:}
  121. 0846:
  122. 0847:#
  123. 0848:# Shell function to decompress and prepare a package for installation
  124. File: '/home/nath/stan/yocto/poky/bitbake/lib/bb/siggen.py', lineno: 596, function: report_unihash
  125. 0592:
  126. 0593: if "." in self.method:
  127. 0594: (module, method) = self.method.rsplit('.', 1)
  128. 0595: locs['method'] = getattr(importlib.import_module(module), method)
  129. *** 0596: outhash = bb.utils.better_eval('method(path, sigfile, task, d)', locs)
  130. 0597: else:
  131. 0598: outhash = bb.utils.better_eval(self.method + '(path, sigfile, task, d)', locs)
  132. 0599:
  133. 0600: try:
  134. File: '/home/nath/stan/yocto/poky/bitbake/lib/bb/utils.py', lineno: 420, function: better_eval
  135. 0416: if extraglobals:
  136. 0417: ctx = copy.copy(ctx)
  137. 0418: for g in extraglobals:
  138. 0419: ctx[g] = extraglobals[g]
  139. *** 0420: return eval(source, ctx, locals)
  140. 0421:
  141. 0422:@contextmanager
  142. 0423:def fileslocked(files):
  143. 0424: """Context manager for locking and unlocking file locks."""
  144. File: '<string>', lineno: 1, function: <module>
  145. File "<string>", line 1, in <module>
  146.  
  147. File: '/home/nath/stan/yocto/poky/meta/lib/oe/sstatesig.py', lineno: 604, function: OEOuthashBasic
  148. 0600: process(root)
  149. 0601: for f in files:
  150. 0602: if f == 'fixmepath':
  151. 0603: continue
  152. *** 0604: process(os.path.join(root, f))
  153. 0605: finally:
  154. 0606: os.chdir(prev_dir)
  155. 0607:
  156. 0608: return h.hexdigest()
  157. File: '/home/nath/stan/yocto/poky/meta/lib/oe/sstatesig.py', lineno: 564, function: process
  158. 0560: except KeyError as e:
  159. 0561: bb.warn("KeyError in %s" % path)
  160. 0562: msg = ("KeyError: %s\nPath %s is owned by uid %d, gid %d, which doesn't match "
  161. 0563: "any user/group on target. This may be due to host contamination." % (e, path, s.st_uid, s.st_gid))
  162. *** 0564: raise Exception(msg).with_traceback(e.__traceback__)
  163. 0565:
  164. 0566: if include_timestamps:
  165. 0567: update_hash(" %10d" % s.st_mtime)
  166. 0568:
  167. File: '/home/nath/stan/yocto/poky/meta/lib/oe/sstatesig.py', lineno: 558, function: process
  168. 0554: add_perm(stat.S_IXOTH, 'x')
  169. 0555:
  170. 0556: if include_owners:
  171. 0557: try:
  172. *** 0558: update_hash(" %10s" % pwd.getpwuid(s.st_uid).pw_name)
  173. 0559: update_hash(" %10s" % grp.getgrgid(s.st_gid).gr_name)
  174. 0560: except KeyError as e:
  175. 0561: bb.warn("KeyError in %s" % path)
  176. 0562: msg = ("KeyError: %s\nPath %s is owned by uid %d, gid %d, which doesn't match "
  177. Exception: Exception: KeyError: 'getpwuid(): uid not found: 1000'
  178. Path ./package/etc/motd is owned by uid 1000, gid 1000, which doesn't match any user/group on target. This may be due to host contamination.
  179.  
  180. ERROR: Logfile of failure stored in: /home/nath/stan/yocto/poky/rpi-build/tmp/work/raspberrypi2-poky-linux-gnueabi/base-files/3.0.14-r89/temp/log.do_package.1930960
  181. ERROR: Task (/home/nath/stan/yocto/poky/meta/recipes-core/base-files/base-files_3.0.14.bb:do_package) failed with exit code '1'
  182. NOTE: Tasks Summary: Attempted 1527 tasks of which 1225 didn't need to be rerun and 2 failed.
  183.  
  184. Summary: 2 tasks failed:
  185. /home/nath/stan/yocto/poky/meta/recipes-core/initscripts/initscripts_1.0.bb:do_package
  186. /home/nath/stan/yocto/poky/meta/recipes-core/base-files/base-files_3.0.14.bb:do_package
  187. Summary: There were 4 WARNING messages shown.
  188. Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
  189. [nath@arch-nath rpi-build]$ ls -l /home/nath/stan/yocto/poky/rpi-build/tmp/work/x86_64-linux/libxcb-native/1.14-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../etc/
  190. bash_completion.d/ default/ netconfig quiltrc terminfo/
  191. bindresvport.blacklist inputrc quilt.quiltrc ssl/
  192. [nath@arch-nath rpi-build]$ ls -l /home/nath/stan/yocto/poky/rpi-build/tmp/work/x86_64-linux/libxcb-native/1.14-r0/recipe-sysroot-native/usr/lib/pkgconfig/../../../etc/mot^C
  193. [nath@arch-nath rpi-build]$ find . -name motd
  194. ./tmp/work/raspberrypi2-poky-linux-gnueabi/base-files/3.0.14-r89/motd
  195. ./tmp/work/raspberrypi2-poky-linux-gnueabi/base-files/3.0.14-r89/sstate-build-package/package/etc/motd
  196. ./tmp/work/raspberrypi2-poky-linux-gnueabi/base-files/3.0.14-r89/sstate-build-package/packages-split/base-files/etc/motd
  197. ./tmp/work/raspberrypi2-poky-linux-gnueabi/base-files/3.0.14-r89/image/etc/motd
  198. ./tmp/work/x86_64-linux/util-linux-native/2.36-r0/util-linux-2.36/Documentation/example.files/motd
  199. ./tmp/work/cortexa7t2hf-neon-vfpv4-poky-linux-gnueabi/util-linux/2.36-r0/util-linux-2.36/Documentation/example.files/motd
  200. [nath@arch-nath rpi-build]$ ls ./tmp/work/raspberrypi2-poky-linux-gnueabi/base-files/3.0.14-r89/sstate-build-package/package/etc/motd
  201. ./tmp/work/raspberrypi2-poky-linux-gnueabi/base-files/3.0.14-r89/sstate-build-package/package/etc/motd
  202.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement