Chris Friedt

Results 138 comments of Chris Friedt

Looks like there is a fix found elsewhere: https://github.com/utmapp/UTM/issues/2333#issuecomment-786129411

Apparently this might have to do with UEFI secureboot

Just my 2c, but latency will likely need to be a major consideration here. The Zephyr GPIO abstraction has some cost, even when used in kernel mode. It might need...

Yep. That's exactly the reason.

On the topic of a pool allocator, in C, one approach here is to simply not use malloc() but statically allocate an array sized to the maximum number of nodes...

> > maintainability: do not check in / edit generated code > > We never edit generated code (`configure` scripts). Everything in `configure` script is generated using autoconf from the...

I'm not sure if one or two lines in a FAQ is sufficient. It would be nice to know exact steps to build a toolchain. What is maybe obvious to...

For reference, the following patches were required when building the 0.15.2 SDK manually. The CI build only worked because of deprecated packages (some with security vulnerabilities) being in the AWS...

> As someone who maintains gcc-based toolchains for other projects (debian), and has been hacking autotools-based projects for well over 20 years, you're experiencing how people commonly used autotools 'back...