#!/bin/bash

# Get UBOOT version from bin
bootVer=$(grep -a --null-data U-Boot /dev/mmcblk2boot1 | sed -n '2 p')
echo "$bootVer"

