Just sharing this info, b/c I wasn't able to find a solution online...
I recently installed the Venus OS Large image on a Rpi3A+, after downgrading from a Rpi4 due to power consumption. The VRM Portal ID was always blank, so that portion never worked. Since there isn't an ethernet port, the script in "/sbin/get-unique-id" never gave a proper MAC address. By updating the script to check the WiFi interface, first, I was able to get a valid VRM Portal ID, and everything works as expected.
#!/bin/sh ETH_ADDR=/sys/class/net/eth0/address WLAN_ADDR=/sys/class/net/wlan0/address if [ -f "$WLAN_ADDR" ]; then sed -e 's,:,,g' "$WLAN_ADDR" else sed -e 's,:,,g' "$ETH_ADDR" fi
Hope this helps others!