From f92cc35c9f962335f6a9ad9e0cb003962f15eeaf Mon Sep 17 00:00:00 2001 From: David Marceau Date: Mon, 26 Sep 2022 17:28:27 +0000 Subject: [PATCH 1/2] Update bootstrap.sh Add qemu related packages for launching redox on aarch64 and riscv64 --- bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap.sh b/bootstrap.sh index ccefb39..9b8d573 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -246,6 +246,8 @@ ubuntu() if [ -z "$(which qemu-system-x86_64)" ]; then echo "Installing QEMU..." sudo "$2" install qemu-system-x86 qemu-kvm + sudo "$2" install qemu-efi-arm qemu-system-arm + sudo "$2" install qemu-system-riscv64 u-boot-qemu opensbi qemu-system-misc qemu-utils else echo "QEMU already installed!" fi From 5ec0fbee2797e880e291f4ca31b7c650427496e1 Mon Sep 17 00:00:00 2001 From: David Marceau Date: Mon, 26 Sep 2022 17:44:59 +0000 Subject: [PATCH 2/2] Update bootstrap.sh Only install sufficient packages to launch qemu aarch64 Redox OS --- bootstrap.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 9b8d573..9eb3d83 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -247,7 +247,6 @@ ubuntu() echo "Installing QEMU..." sudo "$2" install qemu-system-x86 qemu-kvm sudo "$2" install qemu-efi-arm qemu-system-arm - sudo "$2" install qemu-system-riscv64 u-boot-qemu opensbi qemu-system-misc qemu-utils else echo "QEMU already installed!" fi