Mourad De Clerck
Mourad De Clerck
I'm trying to test on a MacBookPro14,1 but I think I missed some kconfig setting. No ttySx device seems to be registered: so I don't get the `dw-apb-uart.2: ttyS4 at...
Thanks @roadrunner2 – setting CONFIG_SERIAL_8250_DW=y (and maybe CONFIG_SERIAL_8250_LPSS=y too) did the trick. I can confirm that bluetooth more or less seems to work now: scanning finds the devices in the...
Purely FYI, it works with just: ``` CONFIG_SERIAL_8250=y CONFIG_SERIAL_8250_DW=y ``` So this one doesn't seem to make a difference: ``` # CONFIG_SERIAL_8250_LPSS is not set ``` The skipping audio was...
Are your devices detected after running the following script? ```bash #!/bin/bash for i in /sys/bus/usb/devices/usb* do echo "on" > "$i/power/control" done ```
Debian kernels don't enable CONFIG_KEYBOARD_APPLESPI yet. See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=943337
Is there a repo for the version manager gem?
It seems the patch in #34 doesn't help, still getting a `400` on PUT: ``` 2022-07-25 13:03:33,018:DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): api.gandi.net:443 2022-07-25 13:03:34,459:DEBUG:urllib3.connectionpool:https://api.gandi.net:443 "GET /v5/livedns/domains/subdomain.example.com HTTP/1.1" 404 108 2022-07-25...
Turns out, Gandi changed their behaviour with "linked zones". If you have multiple domains using a linked zone, you no longer can use the LiveDNS API to update them. This...
See also: https://gist.github.com/risen/b5a76d0929379303af30
Is there a branch somewhere for this has_many code?