Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elisstaaf/nanos
My attempt at making an actual good kernel.
https://github.com/elisstaaf/nanos
c kernel minimalist nanokernel operating-system os osdev pure-c
Last synced: about 4 hours ago
JSON representation
My attempt at making an actual good kernel.
- Host: GitHub
- URL: https://github.com/elisstaaf/nanos
- Owner: ElisStaaf
- License: apache-2.0
- Created: 2025-01-17T08:44:01.000Z (20 days ago)
- Default Branch: main
- Last Pushed: 2025-01-17T10:21:15.000Z (20 days ago)
- Last Synced: 2025-01-17T10:27:58.346Z (20 days ago)
- Topics: c, kernel, minimalist, nanokernel, operating-system, os, osdev, pure-c
- Language: C
- Homepage:
- Size: 115 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nanos
This is my personal attempt at making a *functional* kernel. If you didn't know
already, I made an operating system in C a few months ago. But uhhh, the kernel
was built upon very weak glue. Like, something you would buy at the supermarket!
So yeah, this is my *real* attempt at making a good kernel.## Requirements
* [clang](https://clang.llvm.org/)
* [limine](https://limine-bootloader.org/)
* [nasm](https://nasm.us/)
* [ninja](https://ninja-build.org/)
* [python3](https://www.python.org/)
* [lld](https://lld.llvm.org/)## Install
```sh
# Prerequisites
git clone https://github.com/limine-bootloader/limine -b v4.x-branch-binary $HOME/limine
export LIMINE_PATH="$HOME/limine"# Fetch
git clone https://github.com/ElisStaaf/nanos
cd nanos# Install
./gen.py
ninja
qemu-system-x86_64 nanos.iso -serial stdio
```