Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1 KB

File metadata and controls

36 lines (26 loc) · 1 KB

BOS-130

A simple operating system built for the Raspberry Pi Pico (RP2040), implementing a shell, file system, and system utilities.

Screenshot_2025-05-12_14-38-07

Features

  • Basic Shell: Commands like ls, mkdir, cd, touch
  • Crude File System: In-memory file system supporting directories and files
  • Neofetch-style System Info: fetch to display uptime, RAM usage, and file stats.

How to Build

  1. Clone this repository:

    git clone https://github.com/shvpnd/bos-130.git
    cd bos-130
  2. Create a build directory and compile:

    mkdir build
    cd build
    cmake ..
    make
  3. Flash the generated .uf2 file to your Raspberry Pi Pico.

References