Emil Christopher Solli Melar
Emil Christopher Solli Melar
I got a kernel trap because kernel 5.4 has a limitation of 3 SPI devices. Kernel 5.10 has 20, but can be patched. the bcm spi. Now I have _tpm_tis_spi:...
I have the same issue with env_logger package
So what's the verdict on this @TVolden ? :)
> Will it be a problem to just use a newer version of the FW (e.g. same as used on kirkstone brach), without changing anything else? No. It's completely independent...
> It's a hard one to decide on. 3B+ was released before dunfell. Is this a board revision change? Yes as mentioned in the first post it's a PMIC hardware...
Well I haven't tried yet because things like LINUX_RPI_KMETA_BRANCH and KMETA makes me wonder if I am tied to anything special for raspberry pi. What do I do with those?
Would love to get rid of this layer
I deactivate the aziot-tpmd in my .bbappend: my-layer/recipes-core/aziotd/aziotd_%.bbappend : SYSTEMD_SERVICE:${PN}:remove:my-tpm-less-machine = "aziot-tpmd.service"
Thanks! The idea is to have an unique identifier per subscription client so you can distinguish them on the server when tracking / holding a list of active connections, so...
Thank you! ```rust #[derive(Serialize, Deserialize)] #[serde(rename_all = "camelCase")] struct CustomPayload { id: String } ``` Then ```rust let (client, actor) = Client::build(con).payload( CustomPayload { id: "123".to_string() }).unwrap() .await.unwrap(); ``` Still...