kas-poky-rpi.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. branch: 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. branch: 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. branch: 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. IMAGE_FEATURES += "empty-root-password allow-empty-password allow-root-login post-install-logging"
  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. HALT,${TMPDIR},100M,1K \
  53. HALT,${DL_DIR},100M,1K \
  54. HALT,${SSTATE_DIR},100M,1K \
  55. HALT,/tmp,10M,1K"
  56. license: |
  57. # Uncomment next line to allow the license
  58. # See: linux-firmware-rpidistro in docs/ipcompliance.md
  59. #LICENSE_FLAGS_ACCEPTED = "synaptics-killswitch"