Oberon System 3 runs natively on Raspberry Pi 3 — ready SD image provided

April 12, 2026
A close-up image of a woman's hand holding multiple microSD memory cards with red nails.
Photo by Lisa from Pexels on Pexels

What landed

A modern build of Oberon System 3 now boots natively on Raspberry Pi 3B hardware — and you don’t need to compile everything from scratch unless you want to. The release includes a ready-to-flash image (oberon-rpi3.img), precompiled boot files, and a Linux x64 toolchain so tinkering can start in minutes. Want a one-liner? On Linux the author suggests: sudo dd if=oberon-rpi3.img of=/dev/sdX bs=4M conv=fsync status=progress && sync; Windows and macOS users can reach for Raspberry Pi Imager or Etcher instead.

The engineering bits

The inner and outer core (Kernel, Reals, File System) plus platform drivers for display, USB and math have been ported to 32-bit ARM and the system boots under QEMU 10.2 emulating a Pi 2B. It has been reported that the image should also work on Pi 2B v1.2 and the Zero 2, and — for those thinking long-term — it has been reported that the Raspberry Pi 3B will remain in production until at least 2028 and the Zero 2 until at least 2030. Build speed is a selling point: compiling modules, statically linking the core and generating the runtime drive reportedly takes under a minute on a modern laptop; one user notes a complete build in about 51 seconds on a Lenovo T480. Allegedly 355 of 358 modules were built with the provided toolchain.

Try it and what’s next

If you want to experiment, flash oberon-rpi3.img to an SD card and plug it into a Pi 3B (or compatible Pi 2B/Zero 2). The release bundles both a ready image and the scripts to build and flash from source, so you can either run the prebuilt system or reproduce the build yourself. The developer says the immediate next step is JTAG debugging on real hardware (Pi 2B, 3B, Zero 2) and potentially adding an Ethernet network driver; WLAN support is considered harder and may come later. Migration to Raspberry Pi 4 also looks feasible, according to the notes.

A tiny, self-contained OS running on inexpensive hardware — what’s not to love? For hobbyists, retro-OS fans and systems programmers, this is a neat convergence of vintage design and modern, accessible silicon. It’s ready to poke at; go see whether Oberon on a Pi scratches that itch.

Sources: github.com/rochus-keller, Hacker News