diff options
author | Marvin Borner | 2019-09-21 12:33:23 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-21 12:34:52 +0200 |
commit | d91024fb750356bad65cce5bdef206e530b37c53 (patch) | |
tree | 0b75c82c1110ae4ac044fd1447fa2a963de08514 | |
parent | f18d636a8a147a3e2a72318dc6ab2b0d3c7fd6e0 (diff) |
Added build instructions
-rw-r--r-- | README.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..820746a --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# Melvix +<p align="center"> + <i>„A lightweight unix-like operating system“</i> +</p> + +## Build +* Use any system running GNU/Linux (Successfully tried building on Debian, Arch Linux and even OpenBSD) +* Install build dependencies (package names may vary depending on your operating system) + * binutils + * gcc + * make + * bison + * flex + * gmp + * mpc + * mpfr + * texinfo + * curl + * nasm + * grub + * qemu +* Run `make` +* Test Melvix in QEMU (should open automatically after successful `make`) +* Optional: Flash the built ISO to a USB/Floppy/CD drive using `sudo dd if=./build/melvix.iso of=/dev/sdX bs=4M oflag=sync` |