A simple operating system built for the Raspberry Pi Pico (RP2040), implementing a shell, file system, and system utilities.
- Basic Shell: Commands like
ls,mkdir,cd,touch - Crude File System: In-memory file system supporting directories and files
- Neofetch-style System Info:
fetchto display uptime, RAM usage, and file stats.
-
Clone this repository:
git clone https://github.com/shvpnd/bos-130.git cd bos-130 -
Create a build directory and compile:
mkdir build cd build cmake .. make -
Flash the generated
.uf2file to your Raspberry Pi Pico.
