Bitbake 在构建中不包含我的食谱

Bitbake does not include my recipe in build

我正在尝试做一些简单的事情:添加一个新层和一个新配方。我用了

bitbake-layers create-layer

命令创建图层,并将图层目录路径添加到BUILDDIR/conf/bblayers.conf.BBLAYERS变量中。 =15=]

layer.conf

BBPATH .= ":${LAYERDIR}"
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
        ${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "myname-mytest"
BBFILE_PATTERN_myname-mytest = "^${LAYERDIR}/"
BBFILE_PRIORITY_myname-mytest = "6"
LAYERVERSION_myname-mytest = "1"
LAYERSERIES_COMPAT_myname-mytest = "sumo"

local.conf 中添加:

local.conf

IMAGE_INSTALL_APPEND = " mytest-app"

bitbake-layers show-recipes

显示我的图层和食谱。

mytest-app: meta-myname-mytest 1.0

我的食谱中的错误在 bitbake 构建中被捕获,但没有任何错误,在 WORKDIR/image 下没有输出或在 WORKDIR/temp!

下产生日志

我在其他平台上做过这个,我一辈子也说不出我做错了什么。感谢您的帮助!!

IMAGE_INSTALL_append,不是IMAGE_INSTALL_APPEND。 c.f。 https://docs.yoctoproject.org/bitbake/bitbake-user-manual/bitbake-user-manual-metadata.html#appending-and-prepending-override-style-syntax