FramboOS is a minimal operating system (OS) for Raspberry Pi 2 Model B. Actually, it is very minimal. It has a UART interface for logging and an interface to a frame buffer. That's really it...
FramboOS can be loaded on a Raspberry Pi, but can also be emulated in Qemu, which makes development more convenient. After booting, the only thing you'll see is a default checkerboard screen.
All other things need to be programmed by yourself!
- Be sure you're on Ubuntu 22.04 LTS or higher:
otherwise do a release upgrade:
lsb_release -a
sudo apt update sudo do-release-upgrade
- Update Apt and install dependencies:
sudo apt update sudo apt install gcc-arm-none-eabi build-essential qemu-system-arm qemu
- You should have Qemu version 6 or higher to emulate FramboOS.
Check this by running:
qemu-system-arm --version
- Install Homebrew (this will also install the XCode Developer Tools if not yet installed).
- Update Brew and install dependencies:
brew update brew install gcc-arm-embedded make git qemu
- You should have Qemu version 6 or higher to emulate FramboOS.
Check this by running:
qemu-system-arm --version
- Make sure your Windows installation is up to date.
- Install WSL using PowerShell:
...or make sure you're on the latest WSL by running in PowerShell:
wsl --install
wsl --update
- Open the WSL shell and follow the instructions for Ubuntu above.
When you're using WSL it could be you'll get a significantly older version of Qemu which does not recognize raspi2b
as a virtualization target.
If you get the error:
qemu-system-arm: -M raspi2b: unsupported machine type 'raspi2b'
Please make sure you're using Qemu 6 or higher!
When you're Windows install is not completely up to date, you'll get a WSL version that is too old. If you get the error:
Unable to init server: Could not connect: Connection refused
gtk initialisation failed
Make sure that:
- You installed KB5020030 by going to "Settings" > "Update & Security" > "Windows Update". In the "Optional updates available" area, you’ll find the link to download and install the update.
- Run using PowerShell:
wsl --update
- Reboot your machine.
See also this AskUbuntu question.
Download the FramboOS source code from its GitHub page. Clicking the green "Code" button at the top of the page reveals a couple of options. You can:
- copy the SSH link and clone the repo with Git on the command line;
- clone the repository with GitHub Desktop;
- Download a .zip file and unpack it (discouraged)
Caution
The preferred way is to use Git instead of a .zip download. If, during any moment in time, the FramboOS source code gets updated you'll be able to merge the differences with your own work by using Git's tools.
cd
intobuild/
.- Run
make build
to build.
cd
intobuild/
,- Run
make run
Tip
make run
will also build your project, so normally you only need to invoke make run
- Prepare an SD card using the 'Raspberry Pi Imager': https://www.raspberrypi.com/software/
- Replace 'kernel7.img' with 'build/kernel7.img'
- Insert the SD card into the Raspberry Pi and power it up.
Important
You'll need to run this on a Raspberry Pi 2B.
You can use any text editor you like to work on FramboOS. If you don't know what to choose, we recommend using VSCode or its nephew VSCodium.
- Install VSCode or VSCodium.
- To enable error and warning squiggles and debugging support install these extensions:
- After running a
make build
in thebuild/
directory, you may need to update the compilation cache:- Press
Control+Shift+P
, then choose Makefile: Clean configure in the menu that appears. - Again press
Control+Shift+P
, and choose Developer: Reload window.
- Press