diff options
-rw-r--r-- | perl-install/detect_devices.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 05e7eaccb..39c86f38e 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -479,9 +479,9 @@ sub get_mac_generation() { } sub hasSMP { - # Much simpler if we have APIC stuff + # Much simpler if we have APIC/ACPI stuff foreach (syslog()) { - my ($nprocs) = m/Processors: (\d+)/ or next; + my ($nprocs) = (m/Processors: (\d+)/ || m/(\d+) CPUs avail/) or next; return $nprocs > 1 ? 1 : 0; } c::detectSMP() |