diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-03-22 15:02:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-03-22 15:02:19 +0000 |
commit | c7739083bcfd4bcf7012c093a35da6a4e096649f (patch) | |
tree | 336e20880f2688cd07d1f217c17808505b8c6698 /perl-install/install_steps.pm | |
parent | 1b26e585d7b3c63f54cc78a1de098a9ab41b44ad (diff) | |
download | drakx-c7739083bcfd4bcf7012c093a35da6a4e096649f.tar drakx-c7739083bcfd4bcf7012c093a35da6a4e096649f.tar.gz drakx-c7739083bcfd4bcf7012c093a35da6a4e096649f.tar.bz2 drakx-c7739083bcfd4bcf7012c093a35da6a4e096649f.tar.xz drakx-c7739083bcfd4bcf7012c093a35da6a4e096649f.zip |
acpi=on is the default
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 333ff3525..8ccaa2ecd 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -808,7 +808,7 @@ sub setupBootloaderBefore { 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)"); - $acpi = 'on'; + $acpi = ''; } } bootloader::set_append_with_key($o->{bootloader}, acpi => $acpi); |