Bottler Operating System
Go to file
Santiago Lo Coco 730145a7c8 Refactor atoi
Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar>
2021-11-08 17:00:13 -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 Fix bugs 2021-11-08 16:28:56 -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 naive memory management 2021-09-20 10:31:11 -03:00
.gitignore Reformat code 2021-10-31 23:18:54 -03:00
Informe.pdf Update Informe.pdf (and make a change in test_processes.c) 2021-11-03 10:39:42 -03:00
License.txt Add BottlerOS files 2021-09-19 10:24:58 -03:00
Makefile Add PVS-Studio and cppcheck (and make some fixes detailed in Informe.docx) 2021-11-02 23:39:01 -03:00
README.md Update README.md 2021-11-02 23:55:00 -03:00
Readme.txt Add BottlerOS files 2021-09-19 10:24:58 -03:00
build.sh Add PVS-Studio and cppcheck (and make some fixes detailed in Informe.docx) 2021-11-02 23:39:01 -03:00
flags.txt Add PVS-Studio and cppcheck (and make some fixes detailed in Informe.docx) 2021-11-02 23:39:01 -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
x64BareBones.png Add BottlerOS files 2021-09-19 10:24:58 -03:00

README.md

BottlerOS

BottlerOS es un sistema operativo...

Table 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.

./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, spanish, buddy.

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)