From d197bdc629b2ce5e1b4377e74fb0b63b0bbe5a8e Mon Sep 17 00:00:00 2001 From: gfleury Date: Sat, 11 Jan 2025 10:33:30 +0200 Subject: Fix boot with smp 1 Message-ID: <20250111083330.26863-1-gfleury@disroot.org> --- i386/i386/mp_desc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/i386/i386/mp_desc.c b/i386/i386/mp_desc.c index c90600f2..e67aa767 100644 --- a/i386/i386/mp_desc.c +++ b/i386/i386/mp_desc.c @@ -279,6 +279,9 @@ start_other_cpus(void) { int ncpus = smp_get_numcpus(); + if (ncpus == 1) + return; + //Copy cpu initialization assembly routine memcpy((void*) phystokv(apboot_addr), (void*) &apboot, (uint32_t)&apbootend - (uint32_t)&apboot); -- cgit v1.2.3