Meta: Add some quick instructions for how to build and run this thing.

This commit is contained in:
Andreas Kling 2019-02-17 09:45:39 +01:00
parent c81b217fa7
commit fa13e1977e

View file

@ -13,7 +13,7 @@ I always wanted to write my own operating system, but I never took it seriously.
## Current features
* Pre-emptive multitasking
* Compositing window server
* Compositing window server (in userspace)
* ext2 filesystem support
* mmap()
* Unix-like libc and userland
@ -21,6 +21,16 @@ I always wanted to write my own operating system, but I never took it seriously.
* Event-driven GUI library
* Other stuff I can't think of right now...
## How do I get it to run?
I've only tested this on an Ubuntu 18.10 host with clang, so I'm not sure it works anywhere else. If you'd like to run it, here's how you'd get it to boot:
cd Kernel
./makeall.sh
sudo ./sync.sh
./run q # Runs in QEMU
./run # Runs in bochs
## Author
* **Andreas Kling** - [awesomekling](https://github.com/awesomekling)