summaryrefslogtreecommitdiff
path: root/schulung_tools/layer-building/yocto/machines/imx6qdlsabresd.source
blob: 8290e3c05bbf319d7e308067c19ccde46af81e7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
test -d /home/devel/meta-freescale || exit 1

setup_extra() {
cat << EOF >> conf/local.conf
IMAGE_FSTYPES += "wic"
EOF

cat << 'EOF' > conf/bblayers.conf
# POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf
# changes incompatibly
POKY_BBLAYERS_CONF_VERSION = "2"

BBPATH = "${TOPDIR}"
BBFILES ?= ""

BBLAYERS ?= " \
  /home/devel/yocto/source/poky/meta \
  /home/devel/yocto/source/poky/meta-poky \
  /home/devel/yocto/source/poky/meta-yocto-bsp \
  /home/devel/meta-freescale \
  "
EOF
}

build_extra() {
bitbake core-image-weston
bitbake -c populate_sdk core-image-weston
}