From f909532a213dd82a43becfb79d33d66fe5ecc411 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 6 Apr 2022 18:01:04 +0200 Subject: [PATCH] qemu: enable ACPI for SMP It turns out that by having CONFIG_ACPI=n, we've been failing to boot additional CPUs, and so these systems were functionally UP. The code bloat is unfortunate for build times, but I don't see an alternative. So this commit sets CONFIG_ACPI=y for x86_64 and i686 configs. Signed-off-by: Jason A. Donenfeld --- src/tests/qemu/arch/i686.config | 1 + src/tests/qemu/arch/x86_64.config | 1 + 2 files changed, 2 insertions(+) diff --git a/src/tests/qemu/arch/i686.config b/src/tests/qemu/arch/i686.config index a85025d7..a9b4fe79 100644 --- a/src/tests/qemu/arch/i686.config +++ b/src/tests/qemu/arch/i686.config @@ -1,3 +1,4 @@ +CONFIG_ACPI=y CONFIG_SERIAL_8250=y CONFIG_SERIAL_8250_CONSOLE=y CONFIG_CMDLINE_BOOL=y diff --git a/src/tests/qemu/arch/x86_64.config b/src/tests/qemu/arch/x86_64.config index 00a1ef48..45dd53a0 100644 --- a/src/tests/qemu/arch/x86_64.config +++ b/src/tests/qemu/arch/x86_64.config @@ -1,3 +1,4 @@ +CONFIG_ACPI=y CONFIG_SERIAL_8250=y CONFIG_SERIAL_8250_CONSOLE=y CONFIG_CMDLINE_BOOL=y