How to determine dependencies of recipes in yocto?

前端 未结 4 1660
时光说笑
时光说笑 2021-02-15 11:46

I want to add gedit to the the image. But i am not able to find the dependencies of gedit package. How to find the dependencies (DEPENDS) in yocto.

4条回答
  •  太阳男子
    2021-02-15 12:35

    You can use the following command which opens up a Dependency explorer that displays dependencies on the packages:

    bitbake -g recipe-name -u depexp

    or bitbake -g gedit -u depexp ,in your case.

    On pyro and later use:

    bitbake -g recipe-name -u taskexp

    Note: this command needs python-gtk2 installed.

提交回复
热议问题