From 7d319b50f9071b6d218b779bcd6955f6349a580e Mon Sep 17 00:00:00 2001 From: Michel Boaventura Date: Wed, 26 Jul 2017 22:53:23 -0300 Subject: [PATCH] Fix directions on how to install qemu on Gentoo In order to have ``qemu-system-x86_64`` we need to enable ``x86_64`` on ``QEMU_SOFTMMU_TARGETS``, not ``i386`` --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 0278387..3f892e4 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -288,7 +288,7 @@ gentoo() if [ "$2" == "qemu" ]; then if [ -z "$(which qemu-system-x86_64)" ]; then echo "Please install QEMU and re-run this script" - echo "Step1. Add QEMU_SOFTMMU_TARGETS=\"i386\" to /etc/portage/make.conf" + echo "Step1. Add QEMU_SOFTMMU_TARGETS=\"x86_64\" to /etc/portage/make.conf" echo "Step2. Execute \"sudo emerge app-emulation/qemu\"" else echo "QEMU already installed!"