Monolithic kernel and support libraries for riscv64 and x86_64.
- C++ 90.7%
- C 6.8%
- Makefile 1.4%
- Assembly 0.8%
- Linker Script 0.3%
| .github/workflows | ci: add unit tests to GHA workflow | |
| docs | meta: README update ad doc improvements | |
| kernel | kernel/core: finished work item implementation, added cancellation | |
| misc | syslib: removing unused functionality, fixed RefCount<T> bug. | |
| sdks/user/include | meta: ran spellcheck over the kernel codebase | |
| .changelog.txt | drivers: api improvements, add ps2 keyboard and virtio gpu implementations ( #68 ) | |
| .gitignore | kernel/services: initial vmdaemon work/unmap + unlink | |
| Config.mk | build: general cleanup | |
| LICENSE | added license | |
| Makefile | syslib: moved library into kernel/lib from libs/np-syslib | |
| README.md | meta: README update ad doc improvements | |
Here lives the northport kernel (npk) and some support libraries. This is the third
iteration of this project, for previous attempts see the iteration-X git branches.
The kernel currently only supports x86_64, ports for m68k and aarch64 are planned.
To get started building or hacking on northport, you can clone the master branch of
the repo and run make for further instructions.
Northport is my personal hobby operating system - it's not something that I would recommend for any serious usage. There may be bugs, and my responses may take time. I do still appreciate any reports sent my way though.
Project Goals
- To build a usable and relatively complete kernel. It should also be extensible (via drivers) to add support for new architectures, platforms and devices.
- The system should be self hosting, including cross compiling.
- Useful documentation, not just the external interfaces, but the internal workings.
Glorious Screenshots
coming soon (tm) - currently there's not much going on, and much less to look at.
Related Projects
- DreamOS64: another 64-bit OS by one of the northport contributors, Ivan G.
- OSdev notes: a repository of notes about various osdev topics. Feel free to contribute!