Yocto:cl-som-imx7的meta-debian错误

问题描述 投票:0回答:1

我可以为cl-som-imx7构建一个yocto图像,但是当我添加meta-debian图层时,我得到一个巨大的python跟踪,但有一些错误。我按照以下cl-som-imx7指南进行yocto,基本图像工作正常。 Here is the error

这是我的bblayer.conf文件:

POKY_BBLAYERS_CONF_VERSION = "2"

BBPATH = "${TOPDIR}"
BSPDIR := "${@os.path.abspath(os.path.dirname(d.getVar('FILE', True)) + '/../..')}"

BBFILES ?= ""
BBLAYERS = " \
  ${BSPDIR}/sources/poky/meta \
  ${BSPDIR}/sources/poky/meta-poky \
  \
  ${BSPDIR}/sources/meta-openembedded/meta-oe \
  ${BSPDIR}/sources/meta-openembedded/meta-multimedia \
  \
  ${BSPDIR}/sources/meta-fsl-arm \
  ${BSPDIR}/sources/meta-fsl-arm-extra \
  ${BSPDIR}/sources/meta-fsl-demos \
"
##Freescale Yocto Project Release layer
BBLAYERS += " ${BSPDIR}/sources/meta-fsl-bsp-release/imx/meta-bsp "
BBLAYERS += " ${BSPDIR}/sources/meta-fsl-bsp-release/imx/meta-sdk "
BBLAYERS += " ${BSPDIR}/sources/meta-browser "
BBLAYERS += " ${BSPDIR}/sources/meta-openembedded/meta-gnome "
BBLAYERS += " ${BSPDIR}/sources/meta-openembedded/meta-networking "
BBLAYERS += " ${BSPDIR}/sources/meta-openembedded/meta-python "
BBLAYERS += " ${BSPDIR}/sources/meta-openembedded/meta-filesystems "
BBLAYERS += " ${BSPDIR}/sources/meta-qt5 "
BBLAYERS += " \
    ${BSPDIR}/sources/meta-compulab \
    ${BSPDIR}/sources/meta-openembedded/meta-xfce \
    ${BSPDIR}/sources/meta-dspworks \
    ${BSPDIR}/sources/meta-debian \
"
BBLAYERS += " ${BSPDIR}/sources/../sources/meta-uim "
debian yocto openembedded imx7
1个回答
0
投票

我建议你直接使用meta-debian维护者:除了维护者使用的确切配置之外,meta-debian基本上不能很好地放置任何其他层。

© www.soinside.com 2019 - 2024. All rights reserved.