Gregor Riepl

Results 313 comments of Gregor Riepl

> GRUB_CMDLINE_LINUX_DEFAULT="quiet CONFIG_TOUCHSCREEN_SILEAD=y" This is not a kernel command line parameter. You need to set this when recompiling the kernel, and normally you'd build it as a module anyway (`CONFIG_TOUCHSCREEN_SILEAD=m`)....

That is interesting. I suspect your problem is that the these devices may indeed have the same touchscreen configuration, but by simply renaming the firmware file to mssl1680.fw, you will...

I'm using a similar approach to `archive_file`, but with the grunt work happening in a shell script: ```hcl resource "null_resource" "lambda" { provisioner "local-exec" { command = "./build.sh lambda.zip" }...

If the consequences are acceptable, the issue can be worked around by disabling greendns: https://github.com/eventlet/eventlet/blob/master/eventlet/green/socket.py#L20 ```shell import os os.environ['EVENTLET_NO_GREENDNS'] = 'yes' import eventlet ``` This will prevent importing the overridden...

I think the proper fix would be to get rid of any code that silently overrides core Python functionality, and avoid messing up code in unrelated modules. If eventlet must...

For the use case of writing a cdktf script that generates Terraform code, it looks like the CLI is not needed. I haven't used feature flags so far, so the...

FYI: The PlatformIO documentation explicitly mentions the ARM GNU toolchain: https://docs.platformio.org/en/latest/platforms/heltec-cubecell.html#packages

I've ran into the same issues while introducing the module into Debian. My workaround so far is this patch: https://salsa.debian.org/3dprinting-team/trimesh/-/blob/master/debian/patches/02-array-index-32bit-architectures.patch I also reported potential issues with the documentation of the...