Update BottlerOS.md
This commit is contained in:
parent
8331b9fdff
commit
a03d0790a6
|
@ -7,7 +7,7 @@ github: https://github.com/slococo/BottlerOS
|
||||||
category: university
|
category: university
|
||||||
---
|
---
|
||||||
|
|
||||||
## Requisitos <a name="requisitos"></a>
|
## Requirements
|
||||||
|
|
||||||
You must install `nasm`, `qemu`, `gcc` and `make`. These are available in the repository of the vast majority of Linux/macOS distributions.
|
You must install `nasm`, `qemu`, `gcc` and `make`. These are available in the repository of the vast majority of Linux/macOS distributions.
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ macOS (with [homebrew](https://brew.sh/)): `brew install nasm qemu gcc make`
|
||||||
|
|
||||||
If you have another distribution check how to do it.
|
If you have another distribution check how to do it.
|
||||||
|
|
||||||
## Compilación <a name="compilación"></a>
|
## Compilation
|
||||||
|
|
||||||
To compile all the files, the `build.sh` script must be executed (from the root folder of the project). Note that you can pass `buddy` as an argument if you want to compile with this memory manager (it won't compile with it by default). Also, if you want to test the OS with the Spanish keyboard, you can do so by passing `spanish` as an argument. Lastly, the `free` parameter will free memory (that has been obtained via `malloc`) on terminating or `killing` a process.
|
To compile all the files, the `build.sh` script must be executed (from the root folder of the project). Note that you can pass `buddy` as an argument if you want to compile with this memory manager (it won't compile with it by default). Also, if you want to test the OS with the Spanish keyboard, you can do so by passing `spanish` as an argument. Lastly, the `free` parameter will free memory (that has been obtained via `malloc`) on terminating or `killing` a process.
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ To compile all the files, the `build.sh` script must be executed (from the root
|
||||||
|
|
||||||
This script will do a `make` on the `Toolchain` folder and then a `make` on the project's `root` folder. Then, depending on the parameter entered, it will do: `make all`, `make spanish`, `make buddy` or `make free`.
|
This script will do a `make` on the `Toolchain` folder and then a `make` on the project's `root` folder. Then, depending on the parameter entered, it will do: `make all`, `make spanish`, `make buddy` or `make free`.
|
||||||
|
|
||||||
## Ejecución <a name="ejecución"></a>
|
## Execution
|
||||||
|
|
||||||
Now, you will be able to run BottlerOS by doing:
|
Now, you will be able to run BottlerOS by doing:
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ If, instead, you want to run the OS from Windows, you can do so with:
|
||||||
./run.bat
|
./run.bat
|
||||||
```
|
```
|
||||||
|
|
||||||
## Testeos <a name="tests"></a>
|
## Tests
|
||||||
|
|
||||||
In order to perform a static analysis of the system you must have [cppcheck](http://cppcheck.net/) and [pvs-studio](https://pvs-studio.com/) installed. Then, you can run the tests with:
|
In order to perform a static analysis of the system you must have [cppcheck](http://cppcheck.net/) and [pvs-studio](https://pvs-studio.com/) installed. Then, you can run the tests with:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue