Skip to content

ReturnInfinity/BareMetal-OS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

BareMetal OS is an exokernel-based operating system crafted entirely in x86-64 assembly and is designed to provide unparalleled levels of flexibility and efficiency. By exposing hardware resources directly to applications, it empowers developers to finely tune and optimize their software for specific tasks. With the exokernel's minimalist design, it minimizes the overhead imposed by traditional operating systems, enabling applications to achieve peak performance. Its x86-64 assembly implementation speaks to its commitment to squeezing every ounce of performance from the hardware, making it a compelling choice for those who demand the utmost control and efficiency from their computing environments.

Prerequisites

The script in this repo depends on a Debian-based Linux system like Ubuntu or Elementary. macOS is also supported to build and test the OS, as well as the Assembly applications, if you are using Homebrew.

  • NASM - Assembly compiler to build the loader and kernel, as well as the apps written in Assembly.
  • QEMU - Computer emulator if you plan on running the OS for quick testing.
  • GCC - C compiler for building C/C++ applications.
  • Git - Version control software for pulling the source code from GitHub.
  • mtools - Utilities to access DOS (FAT32) disk images in Unix.

In Linux this can be completed with the following command:

sudo apt install nasm qemu-system-x86 gcc git mtools

In macOS via Homebrew this can be completed with the following command:

brew install nasm qemu gcc git mtools

Summary

BareMetal OS consists of several different projects:

Initial configuration

git clone https://github.com/ReturnInfinity/BareMetal-OS.git
cd BareMetal-OS
./baremetal.sh setup

baremetal.sh setup automatically runs the build and install functions. Once the setup is complete you can execute baremetal.sh run to verify that everything installed correctly.

Rebuilding the source code

./baremetal.sh build

Installing the system to the disk image

./baremetal.sh install

This command installs the boot sector, loader (Pure64), kernel, and simple command line interface (Monitor) to the disk image. If you want to attach your own binary to the end of the kernel you can use ./baremetal.sh install mybinary.bin

Installing the demos to the disk image

./baremetal.sh demos

This command installs the demo programs to the disk image.

Test the install with QEMU

./baremetal.sh run

Test the install with QEMU via UEFI

./baremetal.sh run-uefi

Build a VMDK disk image for VMware

./baremetal.sh vmdk

Build a VDI disk image for VirtualBox

./baremetal.sh vdi

The VDI script rewrites the disk ID of the VDI file to avoid the disk warning in VirtualBox.

Test the install with Bochs

bochs -f bochs.cfg

Notes:

  • The bochs.cfg file may need to be adjusted for your usage. It was created for a Linux-based system.
  • display_libary is set to use x for X Windows with the GUI Debugger by default. On macOS or Windows you will need to use sdl2 with no additional options.
  • The file paths for romimage and vgaromimage will need to be updated if the Bochs BIOS files are in a different location.

// EOF

About

Build script for BareMetal OS and its related utilities

Topics

Resources

License

Stars

Watchers

Forks

Languages