From 3cd5a583ab5cee766d855abf51ac0e6eec21ab64 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 8 Aug 2005 01:13:04 +0000 Subject: acpi=on on every recent bios, not only laptops --- perl-install/install_steps.pm | 5 ++--- 1 file 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 = ''; } } -- cgit v1.2.1