Tobias Grosser
Tobias Grosser
@nhaehnle, you are right! The following patch fixes the issue for me: ``` diff --git a/llvm/tools/llvm-shlib/CMakeLists.txt b/llvm/tools/llvm-shlib/CMakeLists.txt index eb4d9891c929..4a6c2b814236 100644 --- a/llvm/tools/llvm-shlib/CMakeLists.txt +++ b/llvm/tools/llvm-shlib/CMakeLists.txt @@ -20,7 +20,7 @@ if(LLVM_BUILD_LLVM_DYLIB) #...
I also have the same problem here.
I also see this issue. It would be great if it could be resolved.
Excellent. Thank you Martin.
I looked a little further into this. Here are some relevant references. The asahi installer has a relevant issue https://github.com/AsahiLinux/asahi-installer/issues/137 but no further information. There is some information about FDE...
Btw, here is a tool that for encrypting luks partitions from userspace: https://github.com/anisse/dmencrypt/blob/master/dmencrypt.go
Here the luks documentation of the on-disk format. https://mirrors.edge.kernel.org/pub/linux/utils/cryptsetup/LUKS_docs/on-disk-format.pdf. I feel implementing his might not be too hard. In particular, one can test this easily on a Linux system.
@tobhe, I just finished a first prototype of a python-native implementation of luks that can turn an unencrypted filesystem image into an encrypted one. I wonder if that would allow...
@tobhe, would you be able to give me a hint of how to get started to update ubuntu-asahi to support an encrypted boot partition? I wanted to try `sudo ./build-generic.sh`...
Just adding a note, that I would be interested in this feature as well. It seems gnome checks here for the overlapping monitors: https://gitlab.gnome.org/GNOME/mutter/-/blob/62f4e0501fc19d68a0ee68645e5c9764ef8a3808/src/backends/meta-monitor-config-manager.c#L1647 I wonder what happens if one...