Results 451 comments of Rahix

For my talk I had a hack to do exactly this. I'll leave the code here for reference: ```python import time import tbot from tbot.machine import board from tbot.machine import...

I've pulled in the typo fix; I'll take a look at the remaining patches in more detail in a few days as I'm a bit busy right now. Sorry for...

My current pattern for soft-resets is this: ```python with contexlib.ExitStack() as cx: b = cx.enter_context(tbot.acquire_board(lh)) lnx = cx.enter_context(tbot.acquire_linux(b)) ... ch = lnx.open_channel("systemctl", "reboot") # Stuff the channel back into the...

I am not 100% sure what you are trying to do... You want to first power-off the system and then have tbot power-cycle it, is that correct? In that case,...

Hi, thanks for the report. This looks odd indeed, I never had a problem like this... But it certainly looks like an upstream paramiko issue, I think. To be quite...

> Should an OpenSBI build testcase be added to tbot or do you consider such work out of scope for your project? My stance on any kind of testcase addition...

Yeah, good point! I also noticed that a while back but didn't get around to fixing it ... I think your proposed solutions is a good workaround for now but...

I've pushed the suggested workaround to master but let's keep this issue open as this seems like a general problem with the kconfig testcases at this point.

Zephyr support does sound very interesting, I definitely support adding that! Though I do have to say that I'm lacking experience here ... Do you know if there's a good...

> There is a way to run Zephyr natively with a "Native POSIX" board Oh, cool, I'll look into that! > Alright, ping me once it's ready, although it will...