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