H All,
I downloaded meta-qt5 dunfell branch and placed it at the appropriate location as required by bblayers.conf. Now, I am trying to build "core-image-qt" for RZV2M.
But getting errors as below.
bitbake core-image-qt Loading cache: 100% |##########################################################################################################| Time: 0:00:00 Loaded 5576 entries from dependency cache. ERROR: No recipes available for: /home/amantya/RZV2M_Workspace/rzv2m/qtbuild/../meta-renesas/dynamic-layers/qt5-layer/qt5/qtcanvas3d_git.bbappend /home/amantya/RZV2M_Workspace/rzv2m/qtbuild/../meta-renesas/dynamic-layers/qt5-layer/qt5/qtenginio_git.bbappend /home/amantya/RZV2M_Workspace/rzv2m/qtbuild/../meta-renesas/dynamic-layers/qt5-layer/qt5/qtwayland-native_git.bbappend /home/amantya/RZV2M_Workspace/rzv2m/qtbuild/../meta-renesas/dynamic-layers/qt5-layer/qt5/qtwebkit-examples_git.bbappend Summary: There was 1 ERROR message shown, returning a non-zero exit code.
here is the snippet 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 ?= "" QT_LAYER = "${@os.path.isdir("${TOPDIR}/../meta-qt5")}" RZ_FEATURE = "${@os.path.isdir("${TOPDIR}/../meta-rz-features")}" BBLAYERS ?= " \ ${TOPDIR}/../meta-gplv2 \ ${TOPDIR}/../poky/meta \ ${TOPDIR}/../poky/meta-poky \ ${TOPDIR}/../poky/meta-yocto-bsp \ ${TOPDIR}/../meta-renesas \ ${TOPDIR}/../meta-openembedded/meta-oe \ ${TOPDIR}/../meta-openembedded/meta-python \ ${TOPDIR}/../meta-openembedded/meta-multimedia \ ${TOPDIR}/../meta-openembedded/meta-filesystems \ ${TOPDIR}/../meta-mylayer \ ${@'${TOPDIR}/../meta-qt5' \ if \'${QT_LAYER}' \ == \'True' \ else \''} \ ${@'${TOPDIR}/../meta-rz-features' \ if \'${RZ_FEATURE}' \ == \'True' \ else \''} \
Please suggest how to fix it. maybe I cloned the wrong layers version.