Chen Qi
Chen Qi
The check in is_new_para() should match that of inword(). The current codes only check isletter in is_new_para() while inword() also checks number. This causes Meta-P (gotobop) to stuck at line...
The contents in BUILDING.md are no longer valid. For now, building seems as easy as running a 'make' command inside the project directory.
The sd_bus_call_method_asyncv's 10th parameter is of type va_list and supplying NULL when invoking it causes compilation error. Just replace it with the async one. Signed-off-by: Chen Qi
The recipes-aws is deleted by https://github.com/intel-iot-devkit/meta-iot-cloud/commit/3fc517e92f7ea939cf2635bccbaadf3e6f2995d2. Yet I found that the following recipes lack corresponding recipes in meta-aws. packagegroup-cloud-aws_0.17.bb python3-awsiotsdk_1.5.12.bb python3-awscrt_0.11.20.bb python3-awscli_1.18.157.bb aws-iot-device-sdk-cpp-v2-samples_1.12.6.bb python3-gg-group-setup_0.5.3.bb What's the plan for these recipes?...
unfs3 has an old defect that it can not change the timestamps of a symlink file because it only uses utime(), which will follow the symlink. This will not cause...
It'll give us nothing but error like below: ./conftest: cannot execute binary file: Exec format error ... ./configure: line 23950: test: -eq: unary operator expected The version check only has...
findlib's home page is: http://projects.camlcity.org/projects/findlib.html It's using http instead of https. Some web proxy will just block http://xxx. I'm wondering if this situation could be improved a little bit.
When doing a full copy of: $deployment/usr/lib/ostree-boot -> /boot/ostree/$os-$bootcsum/ U-Boot bootscript can use the 'bootdir' to find, for example, the Device Tree (dtb) file, as in: load ${dtype} ${disk}:${bootpart} ${a_fdt}...
Add MFD_NOEXEC_SEAL to avoid kernel warning like below: kexec[970]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set For old kernels, there will be no MFD_NOEXEC_SEAL definition, so fallback to define it...
I'm working on Yocto project and it's easy for Yocto to switch build system for jansson. The version I use is 2.14. Then I found that JSON_INTEGER_IS_LONG_LONG differs across different...