Update 32bit QEMU 5.2.50 --> 5.2.90

and now all the files go to `/usr/bin` instead of `/usr/local/bin` so dpkg doesn't give any warnings when uninstalling.
pull/516/head
Itai Nelken 3 years ago committed by GitHub
parent 651eaa734b
commit 8d23633b2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,9 +8,12 @@ function error {
}
cd $HOME
#Download QEMU
#remove 5.2.50 deb if present
rm -f ./qemu-5.2.50-armhf.deb
wget https://archive.org/download/macos_921_qemu_rpi/qemu-5.2.50-armhf.deb || error 'Failed to Download QEMU!'
#remove 5.2.90 deb if present
rm -f ./qemu-5.2.90-armhf.deb
#Download QEMU
wget https://archive.org/download/macos_921_qemu_rpi/qemu-5.2.90-armhf.deb || error 'Failed to Download QEMU!'
#Install QEMU
sudo apt install --fix-broken -y ./qemu-5.2.50-armhf.deb || error 'Failed to install QEMU!'
rm qemu-5.2.50-armhf.deb
sudo apt install --fix-broken -y ./qemu-5.2.90-armhf.deb || error 'Failed to install QEMU!'
rm -f qemu-5.2.90-armhf.deb

Loading…
Cancel
Save