Janne Grunau

Results 12 comments of Janne Grunau

As far as I remember that code is functionally equivalent to the code in python-eq3bt. It is just using a different API to communicate over BTLE.

Justification for the `gcc/config/aarch64/aarch64.h` change is there is no CPU detection for darwin/arm64 implemented. I have no good justification for the host_hooks change except that seems to be done in...

See following [gcc bug](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97865)

Still the same error with [0019-backport-MacOS-11.0-support-to-gcc-9.2.0.patch.txt](https://github.com/richfelker/musl-cross-make/files/5649456/0019-backport-MacOS-11.0-support-to-gcc-9.2.0.patch.txt) which is expected as the error occurs in `gcc` for which the patch doesn't add `-Wl,-undefined,dynamic_lookup`

gcc-10.3.0 builds `TARGET=aarch64-linux-musl` and seems to work with minimal patching. I just noticed that the error reported by @jlricon is not related to the gcc bug. Following patch fixes that...

kwin_wayland is currently a bad choice since it has no display power management on its own. That means if kwin_wayland is used as compositor the display will stay on indefinitely...

I don't see a conflict. https://github.com/AsahiLinux/asahi-scripts/pull/49 simply monitors `charge_control_end_threshold` (the only user controllable setting) using systemd (probably running anyway) and restores the last written value on driver load using udev...

``` python3 -c "import distro; print(distro.id())" fedora-asahi-remix cat /etc/os-release |grep ID |grep -i fedora ID=fedora-asahi-remix ID_LIKE=fedora ```

This is indeed an asahi specific issue. `fedora-asahi-remix-release-common` carries `/usr/share/dnf/plugins/copr.vendor.conf` with: ``` [main] distribution = Fedora releasever = 41 ``` correcting the distribution to `fedora` fixes the issue. I'll see...

> > Looks like it just doesn't currently support a 16K page size: https://github.com/NVIDIA/open-gpu-kernel-modules/blob/580.95.05/src/nvidia/src/kernel/gpu/mem_mgr/mem_mgr.c#L1935 > > Do you think it could be as easy as > > ``` > case...