Skip to content
This repository has been archived by the owner on Aug 11, 2019. It is now read-only.

Latest commit

 

History

History
26 lines (25 loc) · 841 Bytes

README.md

File metadata and controls

26 lines (25 loc) · 841 Bytes

lambdaOS

An OS written in Rust and Assembly. It currently only supports the amd64 architecture.

Features

Completed

  • VGA driver.
  • Paging.
  • Keyboard input / PS/2 driver.
  • Basic support for PCI devices.
  • Basic pre-emptive scheduling.

Building

# Install Rust - follow on-screen instructions. Note - you may have to reload your shell to be able to use Rust
# commands.
curl https://sh.rustup.rs -sSf | sh
# Clone repo.
git clone https://github.com/too-r/lambdaOS.git && cd ~/lambdaOS #Or wherever you put it.
# We need to be using the nightly toolchain.
rustup override set nightly
# Install rust-src and xargo for cross-compilation.
rustup component add rust-src && cargo install xargo
# Install dependencies from package manager.
sudo pacman -S make qemu xorriso grub nasm mtools
# Build and run lambdaOS
make run