https://github.com/davidbuchanan314/anonymos
Yet another unnamed operating system project.
https://github.com/davidbuchanan314/anonymos
bootloader kernel osdev
Last synced: 4 months ago
JSON representation
Yet another unnamed operating system project.
- Host: GitHub
- URL: https://github.com/davidbuchanan314/anonymos
- Owner: DavidBuchanan314
- License: mit
- Created: 2017-05-12T20:40:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-06-20T18:52:35.000Z (almost 6 years ago)
- Last Synced: 2025-02-12T20:48:28.956Z (4 months ago)
- Topics: bootloader, kernel, osdev
- Language: C
- Size: 3.08 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AnonymOS
Yet another unnamed operating system project. The OS itself does not offer anonymity
(or any other useful features), I simply couldn't think of a name.
## Goals
- The multi-stage bootloader will capable of loading a 32-bit kernel in protected mode from a FAT32 filesystem.
- The kernel will be written in C.
- The kernel will have basic filesystem and multitasking support.
- Port an existing C compiler to the OS, so that it can be self-hosting (This is unlikely to ever happen).## Current Status
- A bootable FAT32 disk image is generated.
- the bootloader is capable of loading and executing a 32-bit kernel (written in C). Currently, the loadable kernel
size is limited by the 1MB memory barrier. The bootloader also sets up VESA graphics.## Building
Running `make` will generate a bootable FAT32 disk image called `boot.bin`. You can test
this image in QEMU by running `make test`, or possibly by writing it to a USB drive.`i686-elf-gcc` is required to compile the kernel.