Fix bug
This commit is contained in:
parent
0319c71c10
commit
ce042e6af3
|
@ -21,7 +21,7 @@ Si tiene otra distribución consulte cómo hacerlo.
|
||||||
|
|
||||||
Para compilar todos los archivos se debe ejecutar el script `build.sh` (desde la carpeta raíz del proyecto). Note que usted podrá pasarle como argumento `buddy` si desea compilar con este memory manager (por defecto no compilará con este). Además, si quiere probar el OS con el teclado en español lo podrá hacer pasandole como argumento `spanish`. Por último, el parámetro `free` liberará la memoria (que haya sido obtenida mediante `malloc`) al terminar o hacer `kill` de un proceso.
|
Para compilar todos los archivos se debe ejecutar el script `build.sh` (desde la carpeta raíz del proyecto). Note que usted podrá pasarle como argumento `buddy` si desea compilar con este memory manager (por defecto no compilará con este). Además, si quiere probar el OS con el teclado en español lo podrá hacer pasandole como argumento `spanish`. Por último, el parámetro `free` liberará la memoria (que haya sido obtenida mediante `malloc`) al terminar o hacer `kill` de un proceso.
|
||||||
|
|
||||||
```bash
|
```
|
||||||
./build.sh
|
./build.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -31,13 +31,13 @@ Este script hará un `make` en la carpeta de `Toolchain` y luego un `make` en la
|
||||||
|
|
||||||
Ahora, usted podrá ejecutar BottlerOS haciendo:
|
Ahora, usted podrá ejecutar BottlerOS haciendo:
|
||||||
|
|
||||||
```bash
|
```
|
||||||
./run.sh
|
./run.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
Si, en su defecto, usted quiere correr el OS desde windows lo podrá hacer con:
|
Si, en su defecto, usted quiere correr el OS desde windows lo podrá hacer con:
|
||||||
|
|
||||||
```bash
|
```
|
||||||
./run.bat
|
./run.bat
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -45,6 +45,6 @@ Si, en su defecto, usted quiere correr el OS desde windows lo podrá hacer con:
|
||||||
|
|
||||||
En orden de realizar un análisis estático del sistema usted debe tener instalado [cppcheck](http://cppcheck.net/) y [pvs-studio](https://pvs-studio.com/). Luego, puede correrlos con:
|
En orden de realizar un análisis estático del sistema usted debe tener instalado [cppcheck](http://cppcheck.net/) y [pvs-studio](https://pvs-studio.com/). Luego, puede correrlos con:
|
||||||
|
|
||||||
```bash
|
```
|
||||||
make test
|
make test
|
||||||
```
|
```
|
|
@ -2,7 +2,6 @@
|
||||||
layout: page
|
layout: page
|
||||||
title: Hidrolimit
|
title: Hidrolimit
|
||||||
description: Water meter with electronic cut-off.
|
description: Water meter with electronic cut-off.
|
||||||
# redirect: https://github.com/santilococo/Hidrolimit
|
|
||||||
github: https://github.com/santilococo/Hidrolimit
|
github: https://github.com/santilococo/Hidrolimit
|
||||||
importance: 4
|
importance: 4
|
||||||
category: personal
|
category: personal
|
|
@ -11,13 +11,13 @@ category: personal
|
||||||
|
|
||||||
Run
|
Run
|
||||||
|
|
||||||
```bash
|
```
|
||||||
curl -LO slococo.com.ar/calsais
|
curl -LO slococo.com.ar/calsais
|
||||||
```
|
```
|
||||||
|
|
||||||
and then
|
and then
|
||||||
|
|
||||||
```bash
|
```
|
||||||
sh calsais
|
sh calsais
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ category: personal
|
||||||
|
|
||||||
[This][4] repo is supposed to be used as a submodule. So, if you already have a git repo with your dotfiles:
|
[This][4] repo is supposed to be used as a submodule. So, if you already have a git repo with your dotfiles:
|
||||||
|
|
||||||
```bash
|
```
|
||||||
git submodule add git@github.com:santilococo/sadedot.git
|
git submodule add git@github.com:santilococo/sadedot.git
|
||||||
git submodule update --init
|
git submodule update --init
|
||||||
```
|
```
|
||||||
|
@ -26,7 +26,7 @@ You should note that all of these dotfiles (files or folders) will be symlinked
|
||||||
|
|
||||||
So, to run the script:
|
So, to run the script:
|
||||||
|
|
||||||
```bash
|
```
|
||||||
sh scripts/bootstrap.sh
|
sh scripts/bootstrap.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ You can install `libnewt` or `dialog` for a better experience, but they are not
|
||||||
|
|
||||||
To keep the submodule up to date, you need to run:
|
To keep the submodule up to date, you need to run:
|
||||||
|
|
||||||
```bash
|
```
|
||||||
git submodule foreach git pull
|
git submodule foreach git pull
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue