Antheas Kapenekakis
Antheas Kapenekakis
Otherwise, try... except on the constructor. then raise e again
You can not assume fd will exist in the destructor. But you can use something like the following. ```python if hasattr(self, 'fd'): fd = getattr(self, 'fd') if fd: os.close(fd) ```...
Finally will run regardless, we do not want that.
acpica is an arch package https://archlinux.org/packages/extra/x86_64/acpica/ and it is also on ubuntu https://packages.debian.org/sid/acpica-tools
Here is a log sample. The other WMI function seems like it is called incorrectly. In addition the fan curve buffer looks wrong. ``` [105816.100567] legion_laptop: Creating platform profile support...
The fan curve function though does match the WMI of the go. It just seems there is a buffer misalignment. I dont recall it being 88 bytes long. Hm, maybe...
Yeah the buffer read is too small. The new buffer interface is larger and contains temps too.
I fixed the wmi for the fan curves in the new laptops. However, it expects percentages, and the autoset function expects rpm. So the driver does not let me set...
In https://github.com/containers/bootc/pull/921 I introduce progress reporting via jsonl. Essentially, JSONL is a protocol used in the NLP field to store large amounts of data in text files that can then...
I am not sure about embedding HTTP directly to bootc. Although it is something I did for [hhd](https://github.com/hhd-dev/hhd). For me, it was a strategic decision to allow binding react apps...