[Kernel-packages] [Bug 2000947] Re: UVC Quanta 0408:4035 camera PROBLEM

2023-06-20 Thread BlindB0
@raj Ubuntu 22 comes with 5.19 kernel. Driver https://github.com/Kvalme/uvc.git only for 6.2 and 6.3 kernels. Try to use @giuliano69 #0 sulution with his bash script. Or try to use #19 solution and below posts. I only try to compile this module on 6.2.0 kernel. -- You received this bug notifica

[Kernel-packages] [Bug 2000947] Re: UVC Quanta 0408:4035 camera PROBLEM

2023-06-20 Thread BlindB0
@raj I just try to compile driver on clean Ubuntu 23.04 with 6.2.0-23-generic kernel. Got the same error. With quick googling found this solution: apt install dwarves cp /sys/kernel/btf/vmlinux /usr/lib/modules/`uname -r`/build/ So, with this steps I can compile it without errors: sudo apt-get ins

[Kernel-packages] [Bug 2000947] Re: UVC Quanta 0408:4035 camera PROBLEM

2023-05-27 Thread BlindB0
@raj You can do it via: sudo cp /lib/modules/$(uname -r)/kernel/drivers/media/usb/uvc/uvcvideo.ko{,.back} sudo cp ~/uvc/uvcvideo.ko /lib/modules/$(uname -r)/kernel/drivers/media/usb/uvc/uvcvideo.ko sudo reboot -- You received this bug notification because you are a member of Kernel Packages, wh

[Kernel-packages] [Bug 2000947] Re: UVC Quanta 0408:4035 camera PROBLEM

2023-05-26 Thread BlindB0
@raj Hi, did you do step-by-step from home folder? sudo apt-get install build-essential git clone https://github.com/Kvalme/uvc.git cd ./uvc/ git checkout 5ea688c make (may be you must change cam id in uvc_driver.c (2471 line) for 4033 model. If you still have an error, later I can make dockerfil

[Kernel-packages] [Bug 2000947] Re: UVC Quanta 0408:4035 camera PROBLEM

2023-05-11 Thread BlindB0
@wtq (wtq-wtq) Hi! I made this build on clean ubuntu-server 23.04 in VirtualBox. All I have to do after setup OS: sudo apt-get install build-essential git clone https://github.com/Kvalme/uvc.git cd ./uvc/ git checkout 5ea688c make After that I copy uvcvideo.ko to laptop. If you still have trouble

[Kernel-packages] [Bug 2000947] Re: UVC Quanta 0408:4035 camera PROBLEM

2023-05-05 Thread BlindB0
I finaly compile https://github.com/Kvalme/uvc on ubuntu 23.04 Simply by: git checkout HEAD~1 (first commit for 6.2 kernel, last for 6.3 kernel) make sudo rmmod uvcvideo sudo insmod ./uvcvideo.ko (No kernel sources, just add build-essential from ubuntu repo) All works like a charm on Acer Nitro 5 A

[Kernel-packages] [Bug 2000947] Re: UVC Quanta 0408:4035 camera PROBLEM

2023-04-17 Thread BlindB0
Hi! I have same problem. UVC Quanta 0408:4035 on Acer Nitro 5 AN515-58. Kubuntu 23.04, kernel 6.2.0. I cannot build this patch with 6.2.0 kernel, because of initial driver file uvc_driver.c in 6.2.0 have many changes. I found maybe suitable driver for 6.x kernel (???). https://github.com/Kvalme/uv