Patrik Dahlström

Results 9 comments of Patrik Dahlström

I find that this page contains some useful HW info on the different Raspberry Pi models: https://github.com/mvp/uhubctl#raspberry-pi-b2b3b Might possibly provide a clue on what's going on. I've got quite a...

I took another closer look on the kernel log, and I can see that it looks like a USB network interface do show up again: ``` [ 99.404489] usb 1-1.4:...

This is the code that handles the re-connect call: ```python _usb.enable_all_usb_ports() while not self._poll_network_interface("eth1"): time.sleep(0.1) self.tc.apply(self.tc.disciplines) def _poll_network_interface(self, name): if os.getenv("ZNAIL_FORCE_INTERFACE_UP", False): return True return name in os.listdir("/sys/class/net/") ``` where...

I've done a bit of digging on the kexec approach recently (after I finally got my hands on a rev A2 box), but I was not able to make it...

Sorry to revive such a old issue, but I'm also working on a C4 board trying to get SGX support running. What would be my best bet to get this...

While going through the release notes for the TI gfxsdk I found that the latest version that has been validated on OMAP35x is the [RN_4_06_00_01](http://processors.wiki.ti.com/index.php/RN_4_06_00_01). That version is using a...

> My concern with this approach is that if the sdcard read/write primitives are implemented synchronously (i.e. they call the completion callback before returning), this will cause asyncfatfs to re-enter...

I reworked the changes so the feature can be enabled at compile time, and also updated the readme file :smiley_cat: @thenickdude, do you think this feature is useful for AsyncFS?

I would also love to have a screencast of this. I've used it before, but never set it up. If I get time at my current workplace to start using...