[yocto] Using clangd LSP for CMake project using OEToolchainConfig.cmake

2023-11-06 Thread Logan Grosz
Hi, all I am trying to use the clangd LSP server during development for my C++ CMake project. I have determined if I place the following snippet after my project directive, set(CMAKE_EXPORT_COMPILE_COMMANDS ON) if(CMAKE_EXPORT_COMPILE_COMMANDS) set(CMAKE_CXX_STANDARD_INCLUDE_DIRECTORIES

[yocto] Multiple wifi access points when using Connman

2023-04-20 Thread logan . grosz
Hi, I am using the poky connman_1.37 recipe and the wpa-supplicant_2.9 recipe. When I get the services from Connman I get duplicates access points: ``` connmanctl> services my-access-point wifi_02... my-access-point wifi_00... ``` I am able to connect to the ones with wifi_00*, but not the

[yocto] Adding avr-gcc to an SDK #bitbake #avr #gcc #sdk

2023-04-13 Thread logan . grosz
Hi, I am using meta-microcontroller ( https://github.com/schnitzeltony/meta-microcontroller ) to build an AVR image at build-time. The target device will then image the microcontroller at runtime. I want to put the avr utilities into the produce yocto sdk to I can do development for the

Re: [yocto] wic cp doesn't work with ext4 partition

2023-07-13 Thread Logan Grosz
I am having a similar problem with `wic cp` and ext4. Though, my problem is a file cannot be copied to a specific path with `wic cp :. No matter what I put, the file gets put at the root. ``` $ wic cp test ./my.wic:1/etc/ $ wic ls test ./my.wic:1/etc/ . .. $ wic ls ./my.wic:1 . .. /etc test ```

Re: [yocto] Multiple wifi access points when using Connman

2023-06-23 Thread logan . grosz
To whom it may concern, It appears some services are from the `wlan` interface while other are from the `p2p` interface of the same physical Wi-Fi module. The addresses of the devices are, `00:1f:7b:31:8f:32` and `02:1f:7b:b5:8f:32`, which result in the 00 vs 02 phenomenon I noticed. Thank

[yocto] Overriding package configuration as a distro

2023-09-18 Thread Logan Grosz via lists.yoctoproject.org
Hi, all I have two distros in the same meta layer, "A" and "B," and a recipe which installs a configuration file existing in a layer elsewhere. "A" and "B" should provide different configuration files, overriding the original configuration. It seems less than ideal to create a bbappend in this

Re: [yocto] Overriding package configuration as a distro

2023-09-18 Thread Logan Grosz via lists.yoctoproject.org
Hi, Quentin Ah, this is great. This looks exactly like what I was looking for. I appreciate the timely response. Thank you, Logan From: Quentin Schulz Sent: Monday, September 18, 2023 8:50 AM To: Logan Grosz ; yocto@lists.yoctoproject.org Subject: Re: [yocto

[yocto] Auto-mount causing "transport endpoint is not connected error"

2023-10-09 Thread Logan Grosz via lists.yoctoproject.org
Hi, all I am attempting to set up removable drive auto-mounting. I am doing so with a tweaked version of meta/recipes-core/udev/udev-extraconf/mount.sh​. My version is as follows ``` #!/bin/sh # # Called from udev # # Attempt to mount any added block devices and umount any removed devices # #