-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Hello,
I've been trying to rebuild my A2CLOUD.DSK from scratch, but when looking for the A2CLOUD.PO, it's not there on the a2cBinaryURL site. Same with the *.DSK. Is there a new repository for the files required to build an A2CLOUD disk image from scratch? I did build the disk image, but the STARTUP BAS file appears corrupt, so I'm trying to get a working STARTUP program for the .DSK to boot off of.
FILE: ivan.sh
a2cBinaryURL="http://blocksfree.com/downloads"
### DiskImage: Building images from scratch
sudo pkill -f ADTPro
if [[ ! $buildA2CloudDisk ]]; then
echo "A2CLOUD: Downloading 800K disk image..."
wget -qO $a2CloudDisk "${a2cBinaryURL}/a2cloud/A2CLOUD.PO"
echo "A2CLOUD: Downloading 140K disk image..."
wget -qO $a2CloudDisk140 "${a2cBinaryURL}/a2cloud/A2CLOUD.DSK"
fi