Comment by andrewl-hn
4 hours ago
> no networking support
Would something like Smoltcp be of help here? https://github.com/smoltcp-rs/smoltcp
Great project either way!
How do you decide which sys calls to work on? Is is based on what the user space binaries demand?
Yip, I panic whenever I encounter a syscall that I can't handle and that prompts me to implement it.
Yeah, I was thinking of integrating that at some point. They've done a really nice job of keeping it no_std-friendly.