From c97ed2abb6f06f59a296ea5f522663db5752dba5 Mon Sep 17 00:00:00 2001 From: Julian Barathieu Date: Wed, 3 Apr 2019 14:15:15 +0200 Subject: [PATCH] Small stuff --- Readme.md | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 Readme.md diff --git a/Readme.md b/Readme.md deleted file mode 100644 index 915c162..0000000 --- a/Readme.md +++ /dev/null @@ -1,36 +0,0 @@ -# OS/K (OS on Kaleid) - -| ![FSF Logo](https://www.os-k.eu/GPLLOGO.PNG) | This program is free software, released under the terms of the [GNU GPL](COPYING) version 3 or later as published by the Free Software Foundation | -|----------------------------------------------|----------------------------------------------------------------------| - -### Fully free operating system from scratch (WIP) - -For the project plan, see [OS/K Project](https://github.com/orgs/os-k-team/projects/1) - -For changelog, see [ChangeLog](ChangeLog) - -For structure of the sources, see [ProjectTree](ProjectTree) - -Note that every file within OS/K is written using spaces for tabulation, with each -tabulation being 4 spaces long. - -#### Compile from sources - -To compile this project from sources, you must first install the dependencies - -``` -apt update && apt upgrade -apt install grub-pc dosfstools make nasm qemu -``` - -You also need to have the [x86-64 ELF gcc cross-compiler](https://www.os-k.eu/build-tools/cross-cc.tar.xz) in `/opt/cross-cc`. - -To compile, simply use at the root of this project : -``` -make -``` - -To compile and test, simply use at the root of this project : -``` -make test -```