This service is available only in Japanese-language.

meta-intelのREADMEの手順でcore-image-satoのbuildが出来ない

以下のページに記載の手順でcore-image-satoの構築を試みてみましたが、失敗します。
https://git.yoctoproject.org/cgit/cgit.cgi/meta-intel/tree/README?h=sumo

NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES 'va-intel' (but /home/lineo/Intel/sumo/source/openembedded-core/meta/recipes-sato/images/core-image-sato.bb RDEPENDS on or otherwise requires it)
va-intel was skipped: missing required distro feature 'opengl' (not in DISTRO_FEATURES)
NOTE: Runtime target 'va-intel' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['va-intel']
ERROR: Required build target 'core-image-sato' has no buildable providers.
Missing or unbuildable dependency chain was: ['core-image-sato', 'va-intel']

URIのREADMEの場合、pokyに含まれる3つのレイヤー(meta/meta-poky/meta-yocto-bsp)を使用するのではなく
poky/meta と同一内容のopenembedded-core 及び meta-intelを使用する手順となっています。
このレイヤー構成の場合、DISTROを定義するレイヤーが含まれていないため、meta-poky で定義されていた
./meta-poky/conf/distro/poky.conf:POKY_DEFAULT_DISTRO_FEATURES = "largefile opengl ptest multiarch wayland vulkan"
といったDISTRO_FEATURESを手動で追加する必要があります。
conf/local.conf に以下の一行を追加することで、build可能なことを確認しております。
DISTRO_FEATURES_append = " opengl"

meta-intelのリリースに際して、cleanな環境でREADMEの手順に従って構築確認を行っていないようですね。