kas-poky-rpi.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. header:
  2. version: 8
  3. machine: raspberrypi4
  4. distro: poky
  5. target:
  6. - core-image-base
  7. repos:
  8. meta-raspberry:
  9. poky:
  10. url: https://git.yoctoproject.org/git/poky
  11. path: layers/poky
  12. refspec: master
  13. layers:
  14. meta:
  15. meta-poky:
  16. meta-yocto-bsp:
  17. meta-openembedded:
  18. url: http://git.openembedded.org/meta-openembedded
  19. path: layers/meta-openembedded
  20. refspec: master
  21. layers:
  22. meta-oe:
  23. meta-python:
  24. meta-networking:
  25. meta-perl:
  26. meta-qt5:
  27. url: https://github.com/meta-qt5/meta-qt5/
  28. path: layers/meta-qt5
  29. refspec: master
  30. bblayers_conf_header:
  31. standard: |
  32. POKY_BBLAYERS_CONF_VERSION = "2"
  33. BBPATH = "${TOPDIR}"
  34. BBFILES ?= ""
  35. local_conf_header:
  36. reduce_diskspace: |
  37. INHERIT += "rm_work_and_downloads"
  38. standard: |
  39. CONF_VERSION = "2"
  40. PACKAGE_CLASSES = "package_rpm"
  41. SDKMACHINE = "x86_64"
  42. USER_CLASSES = "buildstats"
  43. PATCHRESOLVE = "noop"
  44. debug-tweaks: |
  45. EXTRA_IMAGE_FEATURES = "debug-tweaks"
  46. diskmon: |
  47. BB_DISKMON_DIRS = "\
  48. STOPTASKS,${TMPDIR},1G,100K \
  49. STOPTASKS,${DL_DIR},1G,100K \
  50. STOPTASKS,${SSTATE_DIR},1G,100K \
  51. STOPTASKS,/tmp,100M,100K \
  52. ABORT,${TMPDIR},100M,1K \
  53. ABORT,${DL_DIR},100M,1K \
  54. ABORT,${SSTATE_DIR},100M,1K \
  55. ABORT,/tmp,10M,1K"