From 124bcd743bf164615120349f778bf4e48f6a877b Mon Sep 17 00:00:00 2001 From: Daniel Bertalan Date: Fri, 20 May 2022 09:54:46 +0200 Subject: [PATCH] Documentation: Only install the x86 and AArch64 qemu backends on Arch The qemu-emulators-full package installs qemu backends for *all* supported architectures, but we only need x86 and AArch64. This decreases the installed size of dependencies by 800 MiB. --- Documentation/BuildInstructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index 39115335b1..e9af4949a1 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -48,7 +48,7 @@ for details. ### Arch Linux / Manjaro ```console -sudo pacman -S --needed base-devel cmake curl mpfr libmpc gmp e2fsprogs ninja qemu-desktop qemu-emulators-full ccache rsync unzip +sudo pacman -S --needed base-devel cmake curl mpfr libmpc gmp e2fsprogs ninja qemu-desktop qemu-system-x86 qemu-system-aarch64 ccache rsync unzip ``` Optional: `fuse2fs` for [building images without root](https://github.com/SerenityOS/serenity/pull/11224).