Bottler Operating System
Go to file
Santiago Lo Coco bcf678e2a3
Update and rename License.txt to LICENSE.md
2022-04-02 07:35:20 -03:00
Bootloader Add PVS-Studio and cppcheck (and make some fixes detailed in Informe.docx) 2021-11-02 23:39:01 -03:00
Image Add naive memory management 2021-09-20 10:31:11 -03:00
Kernel Add FREE_FLAG 2021-11-29 09:55:17 -03:00
Toolchain Add PVS-Studio and cppcheck (and make some fixes detailed in Informe.docx) 2021-11-02 23:39:01 -03:00
Userland Refactor atoi 2021-11-08 17:00:13 -03:00
.gdbinit Add FREE_FLAG 2021-11-29 09:55:17 -03:00
.gitignore Reformat code 2021-10-31 23:18:54 -03:00
LICENSE.md Update and rename License.txt to LICENSE.md 2022-04-02 07:35:20 -03:00
Makefile Add FREE_FLAG 2021-11-29 09:55:17 -03:00
README.md Update README.md 2022-02-10 11:16:40 -03:00
build.sh Update README 2021-11-29 10:02:02 -03:00
run.bat Add BottlerOS files 2021-09-19 10:24:58 -03:00
run.sh Add BottlerOS files 2021-09-19 10:24:58 -03:00

README.md

BottlerOS

BottlerOS es un sistema operativo...

Tabla de contenidos

Requisitos

Debe instalar nasm, qemu, gcc, make. Estos se encuentran disponibles en el repositorio de la vasta mayoría de distribuciones de Linux/macOS.

Debian/Ubuntu: apt install nasm qemu gcc make
macOS (con homebrew): brew install nasm qemu gcc make

Si tiene otra distribución consulte cómo hacerlo.

Compilación

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.

./build.sh

Este script hará un make en la carpeta de Toolchain y luego un make en la carpeta root del proyecto. Luego, dependiendo del parámetro ingresado hará: make all, make spanish, make buddy o make free.

Ejecución

Ahora, usted podrá ejecutar BottlerOS haciendo:

./run.sh

Si, en su defecto, usted quiere correr el OS desde windows lo podrá hacer con:

./run.bat

Testeos

En orden de realizar un análisis estático del sistema usted debe tener instalado cppcheck y pvs-studio. Luego, puede correrlos con:

make test

Autores

  • Barmasch, Juan Martín (61033)
  • Bellver, Ezequiel (61268)
  • Lo Coco, Santiago (61301)