Maxim Devaev
Maxim Devaev
In more detail, how we use it. We have a small demon that raises the wakealarm and then bumpes it. If the OS freezes or power off has been performed,...
I can revert it and check.
I understand. Actually, I thought everything was fine here - I just used the API for the chip. @pelwell I've reverted that commit and everything is working now. @alexandrebelloni Thank...
Okay, I've tested it and everything working fine. Patch https://github.com/alexandrebelloni/linux/commit/7b6c32af91d78fabc56461ffd27310cf8344f884 plus dtsi edit plus config.txt Thank you!
@alexandrebelloni Sup? Sorry for pinging. Will your patch be submitted to the kernel upstream?
Another possible workaround is busyloop (pseudo-c): ```c long double deadline_ts = get_now_monotonic() + timeout; VCOS_STATUS_T sem_status; while (true) { sem_status = vcos_semaphore_trywait(sem); if (sem_status != VCOS_EAGAIN || get_now_monotonic() > deadline_ts)...
Could you update os and try ipmi sol again? Also which package do you use for conserver? [Is it?](https://aur.archlinux.org/packages/conserver) I can build it and add to the repo.
@awilliam boop
It seems to me that the close confirmation should act on the entire page, regardless of the terminal and the input text. If the user disables this setting, he clearly...
In fact, first of all, this is protection against accidentally pressing Ctrl+W, because we cannot intercept this combination in the browser. I don't think there is any point in protecting...