I feel like I'm going a little crazy.
I've downloaded the eXoflynn pack from archive.org, and everything is works.
Now I'm trying to update with the script [v.0.9] but I keep getting told that the script "couldn't find disk image".
That's fine, I'm running the VHD from an external USB SSD formatted as an ext4 drive.
Here's the problem: When you start the script, it explicitly tells you to "edit the script and change the User options at the top to fit your setup and re-run."
BUT: there is no option at the beginning of the script!
Am I missing something totally obvious?
This is all that is at the top of the script...
Code: Select all
#!/bin/bash
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Copyright 2019-2020 Alessandro "Locutus73" Miele
# You can download the latest version of this script from:
# https://github.com/MiSTer-devel/Updater_script_MiSTer
ver="v.0.9"
# ========= OPTIONS ==================
URL="https://github.com"
SCRIPT_URL="${URL}/flynnsbit/Top300_updates/blob/main/_mister/update/AO486_Update_Top300_updater.sh"
CURL_RETRY="--connect-timeout 15 --max-time 120 --retry 3 --retry-delay 5 --silent --show-error"
# ========= ADVANCED OPTIONS =========
# ALLOW_INSECURE_SSL="true" will check if SSL certificate verification (see https://curl.haxx.se/docs/sslcerts.html )
# is working (CA certificates installed) and when it's working it will use this feature for safe curl HTTPS downloads,
# otherwise it will use --insecure option for disabling SSL certificate verification.
# If CA certificates aren't installed it's advised to install them (i.e. using security_fixes.sh).
# ALLOW_INSECURE_SSL="false" will never use --insecure option and if CA certificates aren't installed
# any download will fail.
ALLOW_INSECURE_SSL="true"
# ========= CODE STARTS HERE =========
Edit: OK, I see now that the script in the Scripts/ dir is only to download the latest script from the GitHub that does the updating. It would make a lot more sense if the option to change the directory in the local script.