It is an open-source operating system project written in the Zig programming language.
BamOS does not introduce new standards but strives for the best possible implementation of existing ones.
The main feature and goal of this project is to develop a lightweight and extremely fast operating system with a well-documented, concise, and simple codebase, as much as possible.
It aims to include native support for multiple system ABIs between the kernel and user space (GNU/Linux, Windows NT, etc.) simultaneously. This should significantly improve the user experience and simplify the work for software developers.
Despite the familiar and established languages like C/C++ or the possibly safer Rust, our choice is Zig.
Zig is simple enough to be more maintainable than Rust while offering a safer and more functional alternative to C/C++. Zig allows generating high-speed and optimized machine code, and one of its main advantages is the build system, which makes the compilation process seamless and incredibly simple.
To create a kernel executable, all you need is the source code, the Zig compiler, and the command zig build kernel
.
The OS documentation is available on this page.
The kernel documentation base on code is available on this page. If you want to generate the documentation locally, run the following command:
zig build docs
A static site will be placed in the docs
directory, which can then be launched using:
cd docs
python -m http.server
The Zig language description and documentation for its standard library can be found on the official website.
BamOS is still a small but growing project.
We welcome any contributions and invite you to participate in the development and evolution of the project.
See information on contributing.
The build process is quite straightforward:
- Before you begin, ensure that the Zig compiler version 0.13.0 is installed on your workstation.
git clone https://github.com/bagggage/bamos.git
cd bamos
zig build kernel --release=[small|safe|fast]
By default, the build result will be located in the .zig-out
directory. To specify a different path, use the --prefix=[path]
option during the build.
Currently, the OS relies on the third-party BOOTBOOT bootloader, and the bootboot/mkbootimg
utility is used to create the image. In the future, this stage is planned to be simplified and made more cross-platform. However, for now, to create an image, you need to:
- Obtain precompiled BOOTBOOT binaries. And unzip
mkbootimg
for your host OS. - Specify the path to the
bootboot-bin
directory by setting theBOOTBOOT
variable inenv.sh
. - Run
iso.sh
.
By default, the image will be placed in the dist
directory.
For quick OS testing and launch, it is recommended to use the QEMU emulator.
On Windows, you should also add the qemu
directory in the PATH
environment variable beforehand.
In the project's root directory, there are the qemu.sh
and debug.sh
scripts:
qemu.sh
runs a pre-built system image (by defaultdist/bamos.iso
) in the emulator.debug.sh
compiles, creates the image, and runs the system in the emulator.
BamOS is at an early stage of development, and many things are not yet implemented. Moreover, writing the implementation and developing the operating system architecture requires an iterative approach to find the best solutions, so some details may change, but this is all for the better.
- x86-64 architecture support.
- Virtual memory management system.
- Logging system.
- Hardware exceptions.
- Device management system.
- Interrupt handling system.
- PCI bus driver.
- NVMe driver.
- Virtual file system (in progress).
- Various file system drivers (ext2..4, NTFS, FAT32, etc.).
- Drivers for other solid-state storage standards.
- Processes architecture, scheduling.
- System calls architecture and kernel-process interaction with support for various ABIs.
- And much more...