blob: 2d80a57ed0f3d23b0db620d3f807fa1278ea30e5 [file] [log] [blame]
Andrew Geissler062316f2020-05-15 14:19:14 -05001header:
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 refspec: master
15 layers:
16 meta:
17 meta-poky:
18 meta-yocto-bsp:
19
20 meta-openembedded:
21 url: http://git.openembedded.org/meta-openembedded
22 refspec: master
23 layers:
24 meta-oe:
25 meta-python:
26 meta-networking:
27 meta-perl:
28
29 meta-qt5:
30 url: https://github.com/meta-qt5/meta-qt5/
31 refspec: master
32
33bblayers_conf_header:
34 standard: |
35 POKY_BBLAYERS_CONF_VERSION = "2"
36 BBPATH = "${TOPDIR}"
37 BBFILES ?= ""
38local_conf_header:
39 reduce_diskspace: |
40 INHERIT += "rm_work_and_downloads"
41 standard: |
42 CONF_VERSION = "1"
43 PACKAGE_CLASSES = "package_rpm"
44 SDKMACHINE = "x86_64"
45 USER_CLASSES = "buildstats image-mklibs image-prelink"
46 PATCHRESOLVE = "noop"
47 debug-tweaks: |
48 EXTRA_IMAGE_FEATURES = "debug-tweaks"
49 diskmon: |
50 BB_DISKMON_DIRS = "\
51 STOPTASKS,${TMPDIR},1G,100K \
52 STOPTASKS,${DL_DIR},1G,100K \
53 STOPTASKS,${SSTATE_DIR},1G,100K \
54 STOPTASKS,/tmp,100M,100K \
55 ABORT,${TMPDIR},100M,1K \
56 ABORT,${DL_DIR},100M,1K \
57 ABORT,${SSTATE_DIR},100M,1K \
58 ABORT,/tmp,10M,1K"