How to add pciutils package in yocto AGL?

旧时模样 提交于 2019-12-10 12:08:34

问题


I have built Yocto AGL(6.0.0) image for RCar-salvator-xs board and flashed its hyperflash memory. Now, I want to perform PCIe related investigation, for that I want to use lspci command. But, After ligging in as a root in flashed AGL image and executing lspci command it gives command not found.

How can I include pciutils in AGL source code and build it to use lspci command.

I am new to Yocto and AGL.

Any help will be much appreciated.


回答1:


You can add

IMAGE_INSTALL += "pciutils"

or

IMAGE_INSTALL_append = "pciutils"

in conf/local.conf or in your image recipe.



来源:https://stackoverflow.com/questions/53002460/how-to-add-pciutils-package-in-yocto-agl

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!