Git Product home page Git Product logo

felix's Introduction

Felix OS

x86 operating system

Description

Felix is my attempt at writing an x86 operating system.

It's written completely from scratch in Rust and doesn't use any external dependencies.

Pictures

Felix running in QEMU:
felix_qemu

Felix running on real hardware:
felix_real

Features

Bootloader

  • boots (you don't say!)
  • BIOS compatible (also works on UEFI with CSM enabled)
  • Global Descriptor Table loading
  • Unreal Mode switching (to use 32bit addresses in 16bit Real Mode)
  • kernel copying from disk to protected memory
  • 32bit Protected Mode switching
  • kernel jumping

Kernel

  • print! macro able to write formatted text to VGA text buffer
  • Interrupt Descriptor Table loading
  • CPU exceptions handler
  • Programmable Interrupt Controller driver
  • keyboard driver
  • ATA disk driver
  • FAT16 filesystem file read

Shell

Available commands:

  • help shows available commands
  • ls lists root directory entries
  • cat displays content of a file

Building

You can download a pre-built image or you can build it by yourself using Docker.

Download pre-built image

build

A build is made for every commit.

To download the latest build click on the badge above, then click on the most recent build and download the artifact.

Build using Docker

First make sure you have Docker installed. Then:

  1. Clone the repo git clone https://github.com/mrgian/felix
  2. Change dir to repo cd felix
  3. Build the image docker build -t felix-image .
  4. Run the container docker run --name felix-container felix-image
  5. Copy build from container to host docker cp felix-container:/root/felix/build .

Build on MacOS/Linux

Make sure you have rustup,mtools,dosfstools and fdisk installed on your system, in any case makefile script will try to install them for you.

git clone https://github.com/mrgian/felix
cd felix
make all

Running

The final disk image is build/disk.img

make run

Or you can run it on a real x86 computer by copying the disk image to a USB drive using this command: sudo dd if=build/disk.img of=/dev/sdX status=progress and then booting from USB.

Progress

  • 22/10/22 - Project start
  • 27/01/23 - Bootloader can print to screen
  • 31/01/23 - Bootloader can read data from disk to memory
  • 01/02/23 - Bootloader can load kernel to memory
  • 27/02/23 - Moved to Rust environment using inline assembly
  • 01/03/23 - Rewritten kernel loading code in Rust
  • 08/03/23 - Implemented println macro
  • 20/03/23 - Switch to 32bit protected mode
  • 29/03/23 - Basic CPU exception handler
  • 30/03/23 - PIC driver
  • 06/04/23 - keyboard driver
  • 07/04/23 - start working on shell
  • 08/04/23 - ATA disk driver
  • 09/04/23 - FAT filesystem file read
  • 26/04/23 - CPU scheduler

Roadmap

The following features are planned to be added sooner or later:

  • system calls
  • paging
  • memory allocator
  • process manager
  • VESA video driver
  • SATA AHCI disk driver
  • graphical user interface

Credits

This project is entirely developed by Gianmatteo Palmieri (mrgian).

felix's People

Contributors

abs0luty avatar guerinoni avatar mrgian avatar simonhammes avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.