Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 1.53 KB

ROADMAP.md

File metadata and controls

36 lines (23 loc) · 1.53 KB

zerOS dev roadmap

Timeline / Deadlines

17/11/2024

  • finish first write of the memory management subsystem
  • if possible, separate bootloader-specific requests / responses handling, and try to add support for more bootloaders. Also try to abstract bootloaders differences into a cleaner interface for retrieving responses, etc... (maybe load different modules depending on the detected bootloader ?) (maybe use custom binary format for kernel modules ?)
  • setup per-cpu variables
  • setup a stack for the kernel
  • configure clang-format or some other formatter
  • add issue templates, code of conduct, contributing guidelines, dependabot, codeql, etc...
  • move repo to nullware organization

01/12/2024

  • get a working memory management subsystem
  • get a working API for subsystems to register their interrupt handlers
  • be able to write to the framebuffer (i.e. a proper zerOS_printk and some basic framebuffer related API)
  • write unit tests / runtime selftests for some kernel APIs

15/12/2024

  • make the kernel multicore-aware

29/12/2024

  • start writing a task system, with a custom scheduler (?) (based on a multicore priority-based round robin scheduler)

TODO

Below are some lists of not-already-planned features. Some of them may actually never be implemented, because unfeasible, unrealistic, or just not appropriate to kernel coding. However, for now, these are still some potential feature ideas.

Unsorted TODOs

  • implement a reference-counting garbage collector