i.MX8MP EVK v4l2-ctl (v4l-utils) missing?

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

i.MX8MP EVK v4l2-ctl (v4l-utils) missing?

跳至解决方案
1,969 次查看
mihael0010
Contributor I

we have i.MX 8M PLUS EVK and we are doing an image sensor driver, I flashed the sd card as follows:
1.)

DISTRO=fsl-imx-wayland MACHINE=imx8mp-lpddr4-evk source imx-setup-release.sh -b build


2.)

bitbake imx-image-full


3.)

bzcat imx-image-full-imx8mp-lpddr4-evk.wic.bz2 | sudo dd of=/dev/sdd bs=1M conv=fsync

 

After flashing to the SD card, the system starts normally, but when I type the command:

v4l2-ctl --list-devices

the error "v4l2-ctl: command not found" appears!

Why v4l-utils is not installed on imx-image-full?

ps*** First I put imx-image-multimedia, so after that I put imx-image-full because I thought it would help, but nothing

标签 (1)
0 项奖励
1 解答
1,945 次查看
mihael0010
Contributor I

Super thanks

only the syntax is:

IMAGE_INSTALL:append = " v4l-utils"

在原帖中查看解决方案

0 项奖励
2 回复数
1,962 次查看
khang_letruong
Senior Contributor III

Hi @mihael0010 ,

You can add v4l-utils by yourselves by putting following line into <yocto-bsp>/build-xwayland/conf/local.conf :

IMAGE_INSTALL_append = " v4l-utils"

 

Regards,
K

1,946 次查看
mihael0010
Contributor I

Super thanks

only the syntax is:

IMAGE_INSTALL:append = " v4l-utils"
0 项奖励