#This file is for update firmware
#Version V10
#It will uzip firmwarev10.tgz and refresh /APP project
#!/bin/sh
    echo "Start Update"
    /bin/tar -zxvf /home/ftp/firmwarev10.tgz -C /home/ftp/
    /bin/rm -Rf /APP
    /bin/cp -Rf /home/ftp/APP /
    echo "Update finish"
