Seiya Nuta
Seiya Nuta
Docker is used to avoid dealing with boring build errors. I haven't tried yet podman but I believe replacing Docker with it is not that difficult.
Thanks @yashrajkakkad! I'll prepare the outline using mdbook.
Wrote the architecture page: https://kerla.dev/docs/architecture.html Please let me know if you have any ideas on other pages. I'll write them :)
I've created a milestone for multithreading.
Thanks for sharing! This is what I needed to do next! It seems we need to allow mapping executable pages (perhaps for JIT?) and implement epoll. On Thu, Oct 28,...
Great! You don't need to replace all at once. Let's improve the existing implicit panics gradually just like #29.
Great! If I work on this topic I will: 1. Survey how existing OS kernels implement file systems, block I/O subsystem, and how they cache file/disk contents. 2. Write virtio-blk...
> Are we sure to implement the ex2 file system? Yes. I agree ext2 is the best for the first file system implementation because ext2 and its descendants ext3/ext4 are...
The Block I/O subsystem is a bit off-topic so the first goal would be writing ext2 reader/writer library.
Of course! Other file system implementations are also welcome. That said, I think FAT is a good for us because: - It's not designed for UNIX-like operating systems: it lacks...