-
Notifications
You must be signed in to change notification settings - Fork 0
/
Setup_Amiga_DriverDisks.sh
117 lines (103 loc) · 3.54 KB
/
Setup_Amiga_DriverDisks.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/bin/bash
#Simple script to download and assemble the necessary driver
#disks for Minimig on Mister, and an associated Amiga-side
#script to install them
# Copyright 2021 Nick Lines / ByteMavericks
#Uses the update_mister.sh as a base, which is
# Copyright 2018-2020 Alessandro "Locutus73" Miele
# 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/>.
echo "${0##*/}"
echo "By Nick Lines / ByteMavericks."
echo "Based on update_mister script by Alessandro \"Locutus73\" Miele"
echo "Creates ADFs with necessary files to support MiSTerFPGA unique features: RTG and Shared folder"
echo
# ========= OPTIONS ==================
URL="https://github.com"
CURL_RETRY="--connect-timeout 15 --max-time 120 --retry 3 --retry-delay 5 --show-error"
ALLOW_INSECURE_SSL="true"
# ========= CODE STARTS HERE =========
# get the name of the script, or of the parent script if called through a 'curl ... | bash -'
# test network and https by pinging the target website
SSL_SECURITY_OPTION=""
curl ${CURL_RETRY} "${URL}" > /dev/null 2>&1
case $? in
0)
;;
60)
if [[ "${ALLOW_INSECURE_SSL}" == "true" ]]
then
SSL_SECURITY_OPTION="--insecure"
else
echo "CA certificates need"
echo "to be fixed for"
echo "using SSL certificate"
echo "verification."
echo "Please fix them i.e."
echo "using security_fixes.sh"
exit 2
fi
;;
*)
echo "No Internet connection"
exit 1
;;
esac
# download and execute the latest mister_updater.sh
echo "Downloading file lists for Disks 1 and 2"
curl ${CURL_RETRY} ${SSL_SECURITY_OPTION} --fail --location \
-O https://github.com/ByteMavericks/MinimigMiSTer/raw/main/resources/D1_Download_URLs \
-O https://github.com/ByteMavericks/MinimigMiSTer/raw/main/resources/D2_Download_URLs \
-O https://github.com/ByteMavericks/MinimigMiSTer/raw/main/resources/MiSTerUtils.adf
dos2unix D1_Download_URLs
dos2unix D2_Download_URLs
readarray -t D1 < D1_Download_URLs
readarray -t D2 < D2_Download_URLs
#Mount our new thing
cp MiSTerUtils.adf Picasso96.adf
TMPMOUNT=$(mktemp -d)
echo "Mounting Disk1 ADF on ${TMPMOUNT}"
mount -t affs MiSTerUtils.adf ${TMPMOUNT} -o loop,verbose
df ${TMPMOUNT}
echo "Downloading D1 setup files (${#D1[@]}) and adding to disk"
for item in ${D1[@]}
do
echo "...${item}"
curl --silent ${CURL_RETRY} ${SSL_SECURITY_OPTION} --fail --location -O ${item}
cp ${item##*/} ${TMPMOUNT}
done
sync
df ${TMPMOUNT}
sync
umount ${TMPMOUNT}
TMPMOUNT=$(mktemp -d)
echo "Mounting Disk2 ADF on ${TMPMOUNT}"
mount -t affs Picasso96.adf ${TMPMOUNT} -o loop,verbose
df ${TMPMOUNT}
echo "Downloading D2 setup files (${#D2[@]}) and adding to disk"
for item in ${D2[@]}
do
echo "...${item}"
curl --silent ${CURL_RETRY} ${SSL_SECURITY_OPTION} --fail --location -O ${item}
cp ${item##*/} ${TMPMOUNT}
rm ${item##*/}
done
sync
df ${TMPMOUNT}
sync
umount ${TMPMOUNT}
if [[ ! -d "/media/fat/games/Amiga/setup" ]]
then
mkdir /media/fat/games/Amiga/setup
fi
cp Picasso96.adf /media/fat/games/Amiga/setup/
cp MiSTerUtils.adf /media/fat/games/Amiga/setup/
exit 0