diff options
author | Thierry Vignaud <tv@mandriva.org> | 2010-02-03 23:38:08 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2010-02-03 23:38:08 +0000 |
commit | 3722d4b9a92168cbacdd381d7511a0af6f89b9b7 (patch) | |
tree | 8d166b49cbdcba48f43749e9de6696a81a6558d6 /perl-install | |
parent | a8a73d1a21029d7b7f36b2b3a809e864d2869c7b (diff) | |
download | drakx-3722d4b9a92168cbacdd381d7511a0af6f89b9b7.tar drakx-3722d4b9a92168cbacdd381d7511a0af6f89b9b7.tar.gz drakx-3722d4b9a92168cbacdd381d7511a0af6f89b9b7.tar.bz2 drakx-3722d4b9a92168cbacdd381d7511a0af6f89b9b7.tar.xz drakx-3722d4b9a92168cbacdd381d7511a0af6f89b9b7.zip |
(setupBootloader__general) make an advanced option out of 'ACPI' since
it now works out of the box everywhere and it's now mainly a debug
option
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index fa702bb6a..7c1673eae 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -422,7 +422,7 @@ sub setupBootloader__general { ), { label => N("Main options"), title => 1 }, { label => N("Delay before booting default image"), val => \$b->{timeout} }, - { text => N("Enable ACPI"), val => \$force_acpi, type => 'bool' }, + { text => N("Enable ACPI"), val => \$force_acpi, type => 'bool', advanced => 1 }, { text => N("Enable SMP"), val => \$enable_smp, type => 'bool', advanced => 1 }, { text => N("Enable APIC"), val => \$enable_apic, type => 'bool', advanced => 1, disabled => sub { !$enable_lapic } }, |