Installation
There are two common ways to install AP FPV firmware: online sysupgrade from the VTX, or manual upgrade after copying firmware files to /tmp.
Online installation
Use this method when the VTX can reach the internet.
- Connect the VTX to your network using Ethernet, USB networking, or another supported path.
- SSH into the VTX.
- Run the matching
sysupgradecommand.
Example for SSC338Q NOR:
sysupgrade -k -r -n --url=https://github.com/OpenIPC/builder/releases/download/latest/openipc.ssc338q-nor-apfpv.tgzThe command downloads the archive, flashes the firmware, and reboots the VTX.
SSH access
Windows:
- Install PuTTY.
- Enter the VTX IP address.
- Use port
22and connection typeSSH. - Log in as
root.
macOS or Linux:
ssh root@<vtx-ip-address>Default credentials on fresh OpenIPC installations are commonly:
User: rootPassword: 12345Find the VTX IP in your router device list, with a network scanner, or from the serial console.
Offline installation
Use this method when the VTX has no internet access.
- Download the matching firmware archive on your computer.
- Extract it.
- Copy the kernel and root filesystem files to
/tmpon the VTX. - Run
sysupgradewith local paths.
Example files for SSC338Q:
uImage.ssc338qrootfs.squashfs.ssc338qCopy with SCP:
scp uImage.ssc338q root@<vtx-ip>:/tmp/scp rootfs.squashfs.ssc338q root@<vtx-ip>:/tmp/Then run:
sysupgrade -z -n --kernel=/tmp/uImage.ssc338q --rootfs=/tmp/rootfs.squashfs.ssc338qThe VTX reboots when the upgrade finishes.