From e721b7ef60729ecd11319dad4e23f9ffff76e61b Mon Sep 17 00:00:00 2001 From: stormdragon2976 Date: Sun, 1 Jan 2023 14:55:07 -0500 Subject: [PATCH] Updated package names for qemu. --- pi4/build/build-stormux.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pi4/build/build-stormux.sh b/pi4/build/build-stormux.sh index 9848229..e246d01 100755 --- a/pi4/build/build-stormux.sh +++ b/pi4/build/build-stormux.sh @@ -113,11 +113,11 @@ fi # make sure the needed tools are installed if [[ "$(uname -m)" == "x86_64" ]]; then if ! pacman -Q qemu-user-static &> /dev/null ; then - echo "Please install qemu-user-static and binfmt-qemu-static before continuing." + echo "Please install qemu-user-static and qemu-user-static-binfmt before continuing." exit 1 fi - if ! pacman -Q binfmt-qemu-static &> /dev/null ; then - echo "Please install qemu-user-static and binfmt-qemu-static before continuing." + if ! pacman -Q qemu-user-static-binfmt &> /dev/null ; then + echo "Please install qemu-user-static and qemu-user-static-binfmt before continuing." exit 1 fi fi