How to enable eglfs plugin in Yocto setup? using yocto+meta-qt5 for Riotboard

前端 未结 1 951
借酒劲吻你
借酒劲吻你 2021-01-14 04:18

Recently I just used fsl-community-bsp and meta-qt5 layer to generate the cross toolchain and the rootfs. I used \"bitbake meta-toolchain-qt5\" and \"bitbake fsl-image-multi

1条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-14 05:00

    To enable EGLFS, in local.conf add: DISTRO_FEATURES_remove = "X11 wayland"

    1.You do not need to copy the qt5 library, you could follow this wandboard qt5 implementation here

    1. In your machine, you need to enable Qt to run eglfs platform, in /etc/profile, add export QT_QPA_PLATFORM=eglfs or when you run an application; you need to add -platform eglfs. ie. helloworld -platform eglfs

    2. There is no qtbase.inc; You could add PACKAGECONFIG_append_pn-qtbase = " eglfs xx xxx xxxx" to enable the configuration you need

    3. There is qtserialport_git.bb in Jethro

    4. As said, you do not copy the libraries and sources but instead tell Bitbake to do that for you. They will be moved to the corresponding places.

    0 讨论(0)
提交回复
热议问题