Posts by naidu72

    There is no issue with script for downloading, if there is any latest version of 13.0 nightly build while booting up, it will download and update after the reboot.

    only issue i see is download progress bar not show on the screen during the download

    command used in the script

    ------
    curl -# -o /storage/.update/"$LATEST_FILE" "$URL$LATEST_FILE"

    I have renamed the above script with version_update.sh and created .config/autostart.sh with sleep for 60sec

    cat .config/autostart.sh
    #!/bin/sh

    sleep 60 # Delay execution for 1 minute
    /storage/version_update.sh

    this time during the startup screen it shows "Internet is available." and it is started downloading the file under .update folder but it is showing the download progress on the screen

    ------code for to show the progress bar
    Download the latest file with progress bar
    curl -# -o /storage/.update/"$LATEST_FILE" "$URL$LATEST_FILE"

    Hi
    i have written the following shell script it will download the latest nightly build from the mirror url

    When i run from the terminal it is showing download progress but when executed from .config/autostart.sh it only show the printf statement context in startup screen but will it be possible to see the progress in the startup screen Please help with this

    script---->.config/autostart.sh