Advertisement
Guest User

Untitled

a guest
Feb 11th, 2015
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. The stack trace of python calls that resulted in this exception/failure was:
  2. File: 'do_rootfs', lineno: 17, function: <module>
  3. 0013: # generate final images
  4. 0014: create_image(d)
  5. 0015:
  6. 0016:
  7. *** 0017:do_rootfs(d)
  8. 0018:
  9. File: 'do_rootfs', lineno: 14, function: do_rootfs
  10. 0010: # generate rootfs
  11. 0011: create_rootfs(d)
  12. 0012:
  13. 0013: # generate final images
  14. *** 0014: create_image(d)
  15. 0015:
  16. 0016:
  17. 0017:do_rootfs(d)
  18. 0018:
  19. File: '/home/aurele/workspace/yocto/test4/sources/poky/meta/lib/oe/image.py', lineno: 337, function: create_image
  20. 0333: execute_pre_post_process(self.d, post_process_cmds)
  21. 0334:
  22. 0335:
  23. 0336:def create_image(d):
  24. *** 0337: Image(d).create()
  25. 0338:
  26. 0339:if __name__ == "__main__":
  27. 0340: """
  28. 0341: Image creation can be called independent from bitbake environment.
  29. File: '/home/aurele/workspace/yocto/test4/sources/poky/meta/lib/oe/image.py', lineno: 315, function: create
  30. 0311: execute_pre_post_process(self.d, pre_process_cmds)
  31. 0312:
  32. 0313: self._remove_old_symlinks()
  33. 0314:
  34. *** 0315: image_cmd_groups = self._get_imagecmds()
  35. 0316:
  36. 0317: for image_cmds in image_cmd_groups:
  37. 0318: # create the images in parallel
  38. 0319: nproc = multiprocessing.cpu_count()
  39. File: '/home/aurele/workspace/yocto/test4/sources/poky/meta/lib/oe/image.py', lineno: 285, function: _get_imagecmds
  40. 0281: localdata.setVar('OVERRIDES', '%s:%s' % (type, old_overrides))
  41. 0282: bb.data.update_data(localdata)
  42. 0283: localdata.setVar('type', type)
  43. 0284:
  44. *** 0285: cmds.append("\t" + localdata.getVar("IMAGE_CMD", True))
  45. 0286: cmds.append(localdata.expand("\tcd ${DEPLOY_DIR_IMAGE}"))
  46. 0287:
  47. 0288: if type in cimages:
  48. 0289: for ctype in cimages[type]:
  49. Exception: TypeError: cannot concatenate 'str' and 'NoneType' objects
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement