Update Readme.md

This commit is contained in:
Adrien Bourmault 2019-03-09 22:22:57 +01:00 committed by GitHub
parent 94f51b9f12
commit 3317fe0db5
1 changed files with 23 additions and 0 deletions

View File

@ -13,3 +13,26 @@ 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
```
You also need to have the [OS/K cross-compiler](https://www.os-k.eu/build-tools/cross-cc.tar.xz) in `/opt/cross-cc`.
To compile for the first time, you must compile the whole project, in order to build the loop disk image :
```
make all
```
After that, you can use this to compile the kernel only :
```
make kaleid
```