Ondřej Hudousek

Results 8 comments of Ondřej Hudousek

> Yeah, I think the 64bit version is a little bit behind the 32bit version. No big deal to just reflash the image and see what happens. I did try...

> `arm_64bit=0` to `/boot/config` Thanks a lot, this actually resolves the issue of kernel module compilation on RPi4B with Raspbian bullseye. Now after switching to 32bit kernel, actual (most recent)...

> @hudouseko I'm trying to do the same. I see the src code for the headers but not sure of the steps to compile them. Could you be specific in...

Hi, I'm experiencing the same issue with module being installed into wrong /lib/modules subdirectory. I have identical kernel versions installed as @kng listed above on my RPi4. I'm running kernel...

A potential solution might be limiting that find command only to an appropriate subdirectory of /lib/modules, e.g. ```KERNEL_VERSION=`uname -r` ``` `output_dir=$(find "/lib/modules/${KERNEL_VERSION}" -type f -name "bcm2835_smi_dev*" -exec dirname {} \;)`

I've tried to implement the missing soapy_api part here: [https://github.com/hudouseko/cariboulite/tree/main/software/libcariboulite/src/soapy_api](url), nevertheless it seems there is something more to be done in other parts of the code (libcariboulite or others). I...

Hi, I have moved my Cariboulite from previously working on RPi 0 to a fresh installation on RPi4 (64bit raspbian bullseye) and hit exactly the same issue. Kernel module smi_stream_dev...

> 2. Navigate to the SMI stream driver file: > ```shell > nano driver/smi_stream_dev.c > ``` > 3. Inside the editor, use Ctrl+W to search for "Create sysfs". Look for...