nezha.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. header:
  2. version: 8
  3. distro: poky
  4. machine: nezha-allwinner-d1
  5. target:
  6. - core-image-minimal
  7. repos:
  8. meta-riscv:
  9. poky:
  10. url: https://git.yoctoproject.org/git/poky
  11. refspec: master
  12. layers:
  13. meta:
  14. meta-poky:
  15. meta-yocto-bsp:
  16. meta-openembedded:
  17. url: https://git.openembedded.org/meta-openembedded
  18. refspec: master
  19. layers:
  20. meta-oe:
  21. meta-networking:
  22. meta-python:
  23. bblayers_conf_header:
  24. standard: |
  25. POKY_BBLAYERS_CONF_VERSION = "2"
  26. BBPATH = "${TOPDIR}"
  27. BBFILES ?= ""
  28. local_conf_header:
  29. standard: |
  30. CONF_VERSION = "2"
  31. PACKAGE_CLASSES = "package_rpm"
  32. SDKMACHINE = "x86_64"
  33. # Use 'haveged' instead 'rng-tools' due to 'SIGSEGV' error during start 'rngd'
  34. PACKAGE_EXCLUDE:append = "rng-tools"
  35. IMAGE_INSTALL:append = "haveged"
  36. IMAGE_FEATURES += " \
  37. ssh-server-openssh \
  38. debug-tweaks \
  39. "
  40. diskmon: |
  41. BB_DISKMON_DIRS = "\
  42. STOPTASKS,${TMPDIR},1G,100K \
  43. STOPTASKS,${DL_DIR},1G,100K \
  44. STOPTASKS,${SSTATE_DIR},1G,100K \
  45. STOPTASKS,/tmp,100M,100K \
  46. HALT,${TMPDIR},100M,1K \
  47. HALT,${DL_DIR},100M,1K \
  48. HALT,${SSTATE_DIR},100M,1K \
  49. HALT,/tmp,10M,1K"