summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 5ae395a02..6ff7596c5 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -810,9 +810,8 @@ sub setupBootloaderBefore {
if (my ($acpi) = cat_("/proc/cmdline") =~ /\bacpi=(\w+)/) {
if ($acpi eq 'ht') {
#- the user is using the default, which may not be the best
- my $year = detect_devices::computer_info()->{BIOS_Year};
- if (detect_devices::isLaptop() && $year >= 2002) {
- log::l("forcing ACPI on a laptop with recent bios ($year)");
+ if (detect_devices::computer_info()->{BIOS_Year} >= 2002) {
+ log::l("forcing ACPI on recent bios ($year)");
$acpi = '';
}
}