A ROCKNIX fork optimized for the Retroid Pocket Nova.
PortareOS is a personal fork of ROCKNIX, which is itself a fork of JELOS. Nearly everything here is their work. This fork adds a thin layer of tuning for exactly one handheld: the Retroid Pocket Nova.
It is not a general-purpose distribution and does not want to be one. Only the SM8550 platform is built. Every other device is left untouched in the tree so the useful parts can go back upstream.
In ROCKNIX the Nova shares its device tree and all of its emulator configuration with the Retroid Pocket 6. That is sensible from upstream's side — they are the same SoC — but the two handhelds do not have the same screen:
| Retroid Pocket 6 | 1080 × 1920 portrait → 1920 × 1080 in use, 16:9 |
|---|---|
| Retroid Pocket Nova | 1280 × 960 landscape, 4:3, 120 Hz |
So a pile of defaults written for a 1080p 16:9 display land unexamined on a 4:3 one. Emulators render at 1920×1080 and get squeezed onto a screen that has 41% fewer pixels. That is the gap this fork closes.
There is a happier consequence too. 960 is exactly four times 240p, and twice 480p — and almost every retro system is one or the other. Integer scaling on this panel is pixel-perfect and still fills the screen, which is normally a trade-off you have to pick between.
| SoC | Qualcomm QCS8550 — Snapdragon 8 Gen 2 |
|---|---|
| CPU | 1 × Cortex-X3, 4 × A710/A715, 3 × A510 |
| GPU | Adreno 740, Freedreno / Mesa |
| Display | 1280 × 960, 4:3, 120 Hz |
| Gamepad | rsinput MCU over UART |
| Kernel | Linux 7.2.2 |
There are no builds to download. If you want one, you build it:
git clone https://github.com/portare-ch/distribution
cd distribution
make docker-SM8550
Images land in target/. The build wants a container runtime, roughly 100 GB of disk and several hours the first time through.
PortareOS uses its own boot partition label. That means the first image must be written to the card as a fresh install — an in-place update on top of an existing ROCKNIX installation will not find its boot partition. Updates between PortareOS builds work normally.
This project is a thin layer on a very deep stack. Thanks to ROCKNIX, JELOS, LibreELEC, CoreELEC, and everyone whose emulators and drivers do the actual work.
Several of the SM8550 kernel patches carried here come from pocknix-os by shuuri-labs — the microSD work (originally Alex Ling, via Armbian), the gamepad MCU handshake and the panel refresh-rate fix among them. Authorship is preserved in every patch header.
For the upstream project, its community and its documentation, go to rocknix.org. Please do not take PortareOS problems to the ROCKNIX maintainers — they are mine.