Janrupf
Janrupf
If you want to chat, I joined the Matrix group https://matrix.to/#/#waydroid:matrix.org, should be a better communication channel than Github issues
Maybe a bit of an update on this: With bleeding edge upstream mesa things are really close. However, the entire thing currently falls apart because the virgl-vtest backend in mesa...
Same issue here: ``` [ 12.951446] tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0x7815b000-0x7815bfff flags 0x200] vs 7815b000 4000 [ 12.952314] tpm_crb MSFT0101:00:...
Also, in case anyone comes across this issue and wants a temporary fix: For a standard Linux: symlink `/etc/systemd/system/dev-tpmrm0.device` to `/dev/null` For NixOS: `systemd.units."dev-tpmrm0.device".enable = false;` (effectively the Nix equivalent...
I certainly think systemd's behavior is 100% correct (in both scenarios). I would go as far as saying that there are 2 different issues at hand: 1. The kernel having...
Temporary fix: ```nix home.activation.createTargetFileDirectoriesFixup = let isSymlink = entry: (!lib.isString entry) && (entry.method == "symlink"); entryPath = entry: if lib.isString entry then entry else entry.directory; cfg = config.home.persistence; persistenceRoots =...
Its just generally broken with the symlink method because there's the bug in the logic mentioned above, doesn't matter whether the name has a leading dot or not
Of course I find something that fulfills this exact use case 20 minutes after opening this issue: https://docs.siredvin.site/UnlimitedPeripheralWorks/peripherals/recipe_registry/ I personally think this should be a core feature of CC: Tweaked,...
Effectively yes - the only other reasonably working SDP implementation is from the webrtc-rs crate, however, that would mean parsing the SDP twice and I also find str0m's implementation cleaner....
WHIP/WHEP API might work, what I'm looking for is a way to restrict which media line combinations/counts are accepted. My reason for simply making the SDP API public is that...