Closed ierturk closed 2 years ago
Just add the needed kernel modules to your image. If you know that just those two are needed, then putting
CORE_IMAGE_EXTRA_INSTALL = "kernel-module-iwlwifi kernel-module-uvcvideo"
in your local.conf
should be enough. If there are other kernel modules that you might need, you could just use
CORE_IMAGE_EXTRA_INSTALL = "kernel-modules"
to have all kernel modules included in the image.
Thanks for prompt reply. Now uvc camera is up. But iwlwifi has some error. I get the info from dmesg as follow
root@jetson-nano-devkit:~# dmesg | grep iwl
[ 11.267537] iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
[ 11.269642] iwlwifi 0000:01:00.0: Direct firmware load for iwlwifi-8265-26.ucode failed with error -2
[ 11.269645] iwlwifi 0000:01:00.0: Falling back to user helper
[ 72.819169] iwlwifi 0000:01:00.0: Direct firmware load for iwlwifi-8265-25.ucode failed with error -2
[ 72.819201] iwlwifi 0000:01:00.0: Falling back to user helper
Sounds like you need to include the needed firmware in your image, too, doesn't it? There is a linux-firmware-iwlwifi-8265
package available which might provide what you need.
hi @madisongh,
Thanks for your great support. I also added some extra code and it seems to be OK now.
IMAGE_INSTALL:append = " linux-firmware-iwlwifi-8265"
IMAGE_INSTALL:append = " kernel-module-iwlwifi"
IMAGE_INSTALL:append = " kernel-module-iwlmvm"
IMAGE_INSTALL:append = " kernel-module-iwldvm"
IMAGE_INSTALL:append = " kernel-module-uvcvideo"
I have just one more question how to get the command nmcli
. I added extra packahe as follow bot no command found nmcli
.
IMAGE_INSTALL:append = " networkmanager"
IMAGE_INSTALL:append = " modemmanager"
PACKAGECONFIG:append_pn-networkmanager = " nmcli"
Regards, Ibrahim
Hi @madisongh, I added the command nmcli
as follow. Everything seems to be OK. I have just a problem the module. Initialization take some time then usual because of the system try all ucode
s from 26 to 22. For now we can close the issue.
IMAGE_INSTALL:append = " networkmanager-nmcli"
Thanks again. Ibrahim
Hi,
I already tried all demo images on Jetson Nano Devkit as described in the READ.ME. I have an Intel 8265 on M.2 interface and a UVC camera on USB. However there is no video device and no wifi/bluetooth device listed anywhere. I checked kernel config (
bitbake -c menuconfig virtual/kernel
) and the modules seems to be enabled. However there is no kernel module under/lib/modules/4.9.253-l4t-r32.6+gf8935b85523e/kernel/net/wireless
.How do I enable the UVC camera and the wireless module?
lsusb
outputlspci
outputlsmod
outputThanks in advance. Ibrahim