Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
I am trying to add meta-qt5 layer to my Yocto, here am using krogoth Master. I added the line
IMAGE_INSTALL_append = " qtbase qtbase-tools qtbase-plugins"
in my local.conf and i added
/home/user/yocto/poky/meta-qt5 \
in my .bb file. Now if i tried to build
bitbake qtbase
its showing error like
ERROR: Nothing PROVIDES 'qtbase'
i don't know whether the steps am following is correct are not...my target machine is MACHINE = "dra7xx-evm"
. I want to add this meta-qt5 layer... please help me regarding this am new to this..
–
–
~/yocto/poky-krogoth/build_xyz_qemu $ bitbake-layers show-layers
layer path priority
==========================================================================
meta ~/yocto/poky-krogoth/build_xyz_qemu/../meta 5
meta-poky ~/yocto/poky-krogoth/build_xyz_qemu/../meta-poky 5
meta-oe ~/yocto/poky-krogoth/build_xyz_qemu/../meta-oe/meta-oe 6
meta-python ~/yocto/poky-krogoth/build_xyz_qemu/../meta-oe/meta-python 7
meta-networking ~/yocto/poky-krogoth/build_xyz_qemu/../meta-oe/meta-networking 5
meta-java ~/yocto/poky-krogoth/build_xyz_qemu/../meta-java 10
meta-yocto-bsp ~/yocto/poky-krogoth/build_xyz_qemu/../meta-yocto-bsp 5
meta-b2open ~/yocto/poky-krogoth/build_xyz_qemu/../meta-b2open 6
~/yocto/poky-krogoth/build_xyz_qemu $ bitbake-layers add-layer ~/yocto/poky-krogoth/meta-qt5/
~/yocto/poky-krogoth/build_xyz_qemu $ bitbake-layers show-layers
layer path priority
==========================================================================
meta ~/yocto/poky-krogoth/build_xyz_qemu/../meta 5
meta-poky ~/yocto/poky-krogoth/build_xyz_qemu/../meta-poky 5
meta-oe ~/yocto/poky-krogoth/build_xyz_qemu/../meta-oe/meta-oe 6
meta-python ~/yocto/poky-krogoth/build_xyz_qemu/../meta-oe/meta-python 7
meta-networking ~/yocto/poky-krogoth/build_xyz_qemu/../meta-oe/meta-networking 5
meta-java ~/yocto/poky-krogoth/build_xyz_qemu/../meta-java 10
meta-yocto-bsp ~/yocto/poky-krogoth/build_xyz_qemu/../meta-yocto-bsp 5
meta-b2open ~/yocto/poky-krogoth/build_xyz_qemu/../meta-b2open 6
meta-qt5 ~/yocto/poky-krogoth/build_xyz_qemu/meta-qt5 7
~/yocto/poky-krogoth/build_xyz_qemu $
I dont Know why you added /home/user/yocto/poky/meta-qt5 \
to local.conf file . But add the new layer to BBlayer.conf file .
Now check the name of the recipe file in the meta-qt5 layer bitbake the recipe name also don't include version of the recipe (if there is any ).
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.