Ludovic J
Ludovic J
So after a bit of testing, it is working with rpi-test-image but not with core-image-minimal. rpi-test-image is based on core-image-base, so I tested it, and it is working too.
here is the package diff: diff core-image-base core-image-minimal packages ```diff diff dumps/opkg_list_core_image_base dumps/opkg_list_core_image_minimal 1,13d0 < acl-locale-fr - 2.3.1-r0 < alsa-conf - 1.2.6.1-r0 < alsa-state - 0.2.0-r5 < alsa-states - 0.2.0-r5...
Alright, I found it! After some binary search: `kernel-module-i2c-brcmstb-5.15.34-v7l` needs to be installed. Here are now the added packages (depends):. ```diff > kernel-5.15.34-v7l - 1:5.15.34+git0+e1b976ee4f_0086da6acd-r0 > kernel-image-5.15.34-v7l - 1:5.15.34+git0+e1b976ee4f_0086da6acd-r0 >...
Try building with `cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX= -DCMAKE_CXX_COMPILER=clang++ -DCLANG_LINK_CLANG_DYLIB=on -DUSE_SYSTEM_RAPIDJSON=off` in the build directory that you need to create at the root of the repo
you'll need libclang-cpp installed, something like `libclang-cpp-dev` maybe `clang-devel` on centos
oh wait, I guess it should be in `/opt/rh/llvm-toolset-7/root/usr/lib`
Oh you have clang5, try without `-DCLANG_LINK_CLANG_DYLIB=on` this is only for clang>=9
This seems to be linked to https://github.com/agherzan/meta-raspberrypi/issues/1079
I am using firefox containers, not profiles though
Here is a Dockerfile that demonstrate the issue, the last `RUN` won't work because it will cause the issue on configure: ```dockerfile FROM ubuntu ENV TZ=Europe/Paris RUN ln -snf /usr/share/zoneinfo/$TZ...