This service is available only in Japanese-language.

Zynq上でlibmetal(OpenAMP)を使用できる環境の構築

Yoctoでlibmetal(OpenAMP)を使用できる環境の構築しようとしていますが、bitbakeが通らず、困っております。

具体的には、
build/conf/local.confにおいて
MACHINE=zedboard-zynq7
IMAGE_INSTALL_append=libmetal
を設定、
build/conf/bblayers.confにおいて
BBLAYERSに
meta-openembedded/meta-oe
meta-xilinx
meta-openamp
を追加し、
bitbake core-image-minimal
を実行すると、

ERROR: No recipes available for:
/home/shinya/work/ultrascale/yocto/metafiles/xilinx/meta-openamp/recipes-bsp/device-tree/device-tree-generation_%.bbappend

というエラーが出て、止まってしまいます。
もし対処方法等がご存知の方がいらっしゃいましたら、教えていただけませんでしょうか。
pokyとmeta-openembeddedはmortyブランチ、meta-xilinxとmeta-openampはrel-v2017.4(Based on Morty)を使用しています。

device-tree-generation_%.bbappend で機能追加の対象となる device-tree-generation_%.bb が BBLAYERSに記載されたレイヤー内に存在しないため、エラーが表示されています。
https://github.com/Xilinx/meta-xilinx-tools/blob/master/recipes-bsp/devi...
が、元のbbファイルとなりますので、meta-xilinx-tools を入手してBBLAYERSに登録すれば当該エラーは発生しなくなると考えます。

早速試しましたところ、無事bitbakeが通りました。

ありがとうございました。