Go to file
antifallobst f0bf8ac3f5 docs (README): fixed documentation reference 2023-06-10 15:35:14 +02:00
assets Added font as wanted in #12 2023-04-16 06:01:36 +02:00
inc feature (syscalls): implemented 'nx_proc_create' 2023-06-10 15:08:31 +02:00
ramdisk feature (drivers): created infrastructure to config drivers to load on startup 2023-06-06 23:22:08 +02:00
src feature (syscalls): implemented 'nx_proc_create' 2023-06-10 15:08:31 +02:00
.gitignore feature (drivers): created infrastructure to config drivers to load on startup 2023-06-06 23:22:08 +02:00
CMakeLists.txt refactor (build-system): renamed cmake project 2023-05-02 21:19:56 +02:00
LICENSE license: removed unnecessary license comment blocks 2023-03-10 11:32:50 +01:00
README.md docs (README): fixed documentation reference 2023-06-10 15:35:14 +02:00
build.sh feature (drivers): created infrastructure to config drivers to load on startup 2023-06-06 23:22:08 +02:00
kernel.ld refactor (kernel): refactored the directory structure 2023-04-20 23:00:56 +02:00
limine.cfg feature (kernel): Requesting RAMDISK archive module from bootloader 2023-02-23 00:25:00 +01:00
run.sh feature (PCI): added subclass strings 2023-04-26 21:57:18 +02:00
shell.c refactor (build-system): added libnx and shell to build pipeline 2023-05-06 16:33:53 +02:00

README.md

NoxOS

NoxOS is a small x86 operating system (currently just a kernel). The kernel is booted using the limine boot protocol and is fully documented.

Roadmap

  • Bootable system
  • Logger
  • Page frame manager
  • Interrupts
  • Page maps
  • Heap
  • Format strings
  • Graphics Renderer
    • Text
    • Double buffering
    • Buffer requests
  • Panic Screen
    • Register dump
    • Stack tracing
  • Scheduler
    • Threads
    • Processes
  • Ramdisk
    • USTAR
    • RAMFS
    • VFS
  • ELF loading
  • Keyboard input (ps/2 int)
  • JSON parser for system config
  • Drivers
    • Loading / Linking into kernel
    • Driver Device assignment (PCI / USB / FS)
    • API
  • Syscalls
    • Filesystem
    • Memory
    • Processing
    • Drivers
    • Kernel
  • FAT32 (driver)
  • TUI framework
  • Shell
  • Text Editor
  • TCC
  • Tetris
  • Init System

Contribution Welcome :D

Install instructions, Code Documentation and a Contribution guide can be found here.

Copyright 2023 Antifallobst antifallobst@systemausfall.org

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.