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