Skip to content

bblayers.conf

Frank Bauernöppel edited this page Dec 9, 2018 · 5 revisions

Sample content of bblayers.conf file:

# POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf
# changes incompatibly
POKY_BBLAYERS_CONF_VERSION = "2"

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

YOCTOROOT = "${@os.path.abspath(os.path.join("${TOPDIR}", os.pardir))}"

BBLAYERS ?= " \
  ${YOCTOROOT}/recipes/poky/meta \
  ${YOCTOROOT}/recipes/poky/meta-poky \
  ${YOCTOROOT}/recipes/poky/meta-yocto-bsp \
  \
  ${YOCTOROOT}/recipes/meta-openembedded/meta-oe \
  ${YOCTOROOT}/recipes/meta-openembedded/meta-multimedia \
  ${YOCTOROOT}/recipes/meta-openembedded/meta-networking \
  ${YOCTOROOT}/recipes/meta-openembedded/meta-webserver \
  ${YOCTOROOT}/recipes/meta-openembedded/meta-python \
  \
  ${YOCTOROOT}/recipes/meta-qt5 \
  \
  ${YOCTOROOT}/recipes/meta-raspberrypi \
  \
  ${YOCTOROOT}/recipes/meta-raspberrypi-avg \
"

If you cloned more layers into the recipe folder (like meta-qt5), you must add the corresponding paths here.

Clone this wiki locally