1. Download the required UNVRPro firmware, and place it in the unifi-firmware directory. Please see the README.md in that directory for more information.
2. Make sure your system has the required packages installed for this repo, which are:
`docker-ce losetup wget sudo make qemu-user-static squashfs-tools`
3. Run the tool, and sit back and wait for it to do it's thing. Depending on your computer, this may take around an hour or so.
`make`
4. Once done, you will have a built disk image in ./output
Note that currently the install process requires UART to modify the u-boot env for booting. In the future, if I can get the latest kernel GPL source, this will not be required.
1. Build the firmware image (follow the Usage section), and then throw it on an HDD/SSD formatted to ext4. Put said HDD in the UNVR Pro as the only hard drive.
7. Mount your HDD with the firmware image, backup the Unifi firmware, your u-boot env partitions, and then flash our custom firmware to the EMMC. (below command example assumes your ext4 disk partition is at /dev/sda1)
8. At this point you can remove the HDD/SSD you used, and enjoy Debian 12 with OpenMediaVault on your UNVR Pro! Default login for OpenMediaVault is `admin:openmediavault`. SSH login information is `debian:debian`. Please note that first boot may take a bit as cloud-init runs to finish the setup.
To restore back to the factory UNVR-Pro firmware, you can do the following steps:
1. Hold the "reset" button on the front while powering on to boot into recovery
2. Once the display shows it's in recovery, telnet to the IP address. At the login prompt, login with `ubnt:ubnt` or `root:ubnt`.
3. Erase the uboot env, to remove our custom boot commands. This SHOULD be mtd1/mtd2, but **PLEASE VERIFY** first with `cat /proc/mtd` to prevent bricking your device!
4. Once the uboot env's are identified, erase them:
```
dd if=/dev/zero of=/dev/mtd1
dd if=/dev/zero of=/dev/mtd2
```
5. Next, erase the EMMC so all partitions are wiped:
```
/sbin/parted -s -- /dev/boot mklabel gpt
```
6. Now you can use the Unifi Recovery WebUI to upload the firmware file, and restore your device.
## Known Issues
* Installation is Hard
* Need to simplify the install process, this should be much easier once I can get latest GPL kernel source (no more uboot env stuff)
* OpenMediaVault
* BTRFS does not work, period
* No kernel module in UBNT kernel, need new kernel source and we can make so many things better...
Note that since prebuild Ubiquiti software is required for this tool to work, this repo will never have prebuilt images available. This is to prevent redistribution of Ubiquiti's IP, so please DO NOT ASK! Also, by using this repo you accept all risk associated with it including but not limited to voiding your warranty and releasing all parties from any liability associated with your device and this software.