A unified OpenIPC ground station image builder using Buildroot 2.
- RunCam Wifilink
- Emax Wyvern-Link
- Radxa Zero3 (choose one of the above)
- OpenIPC Bonnet
This method flashes the full image to eMMC by booting from an SD card — supports old sbc versions, no drivers, no special tools required.
What you need:
- An SD card (any size, FAT32 formatted)
<platform>_sdcard.imgfrom the releases<platform>_boot.scrfrom the same release
Steps:
-
Format the SD card as FAT32.
- Open Disk Management (
Win + X→ Disk Management), right-click the SD card partition → Format → FAT32.
- Open Disk Management (
-
Copy the files to the SD card.
- Copy
<platform>_sdcard.imgto the root of the SD card. - Copy
<platform>_boot.scrto the root of the SD card and rename it toboot.scr.
- Copy
-
Boot from the SD card.
- Insert the SD card into the device and power it on.
- U-Boot will automatically detect and run
boot.scr, which loads the image and writes it to eMMC. - The process takes a few minutes. When complete, the device removes
boot.scrand the image file from the SD card and reboots into the freshly flashed system.
Note: The device must have a working U-Boot on eMMC. If the eMMC is completely blank or U-Boot is corrupted, use RKDevTool instead — see Bootloader Only — via Maskrom (RKDevTool / rkdeveloptool).
Just use etcher to flash the <platform>_sdcard.img to an SD card.
Boot from an SD card and write the eMMC image:
dd if=/tmp/<vrx name>_sdcard.img of=/dev/mmcblk0 status=progress
Note: This will erase all data on the internal flash.
Update only the bootloader on the eMMC without touching the rest of the flash:
dd if=/tmp/<vrx name>_u-boot.bin of=/dev/mmcblk0 seek=64 status=progress
Useful when upgrading from SBC-GS Beta 2 or older, which do not support squashfs-based systems. Also useful when you want to keep existing data on the eMMC.
Flash <vrx name>_emmc_bootloader.img to the eMMC using RKDevTool or rkdeveloptool.
See: How to recover RunCam VRX from a bad flash
Note: This will erase all data on the internal flash.
Once flashed, the Buildroot image can update itself via several ways:
- Copy the
<vrx name>.tar.gzpackage to a FAT-formatted SD card and reboot. - Copy the
<vrx name>.tar.gzpackage to theDVRpartition on the SD card and reboot. - Copy the
<vrx name>.tar.gzpackage to theDVRpartition on the eMMC. Usescp, SMB, or gadget mode and reboot. - Use
sysupgrade -u -rfor an online update. Seesysupgrade --helpfor more options. - Use
./build.sh ssh-flashto flash a local build toBR2_BOARD_HOST. See menuconfig. - Use
./build.sh flashto flash a local build to the eMMC usingrkdeveloptool(maskrom).
- Hold the
Rightbutton during boot. - Run
firstboot.
-
Hold the
Leftbutton during boot to enable USB OTG gadget mode.Via the OTG port, you will get:
- DVR access
- Serial connection
- Network connection (SBC is on
192.168.5.1)
Custom builds rely on Buildroot dependencies.
git clone https://github.com/OpenIPC/sbc-groundstations.git
cd sbc-groundstations
./build.sh
Refer to Buildroot's documentation for instructions on customizing your build: Buildroot
There is a DTB naming mismatch in u-boot versions between the sbc-gs and older RadxaOS based images e.g. Ruby. The fix is to copy the correct DTB into the Ruby partition once after installing:
# Boot to sbc-gs and enter these commands:
mkdir -p /mnt/ruby
mount /dev/mmcblk1p3 /mnt/ruby
cp /boot/rockchip/rk3566-radxa-zero-3w-aic8800ds2.dtb /mnt/ruby/usr/lib/linux-image-5.10.160-34-rk356x/rockchip/rk3566-radxa-zero-3w.dtb
reboot
See the CC branch
- Radxa zero 3W/E v0.9-beta