summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-08-13 03:09:36 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-08-13 03:09:36 +0000
commitafd31bb0f770218ed23053971e7265f26cd925a6 (patch)
tree08c21d5defb2a121ee455f4b9c74f8d6c4b19e6c /perl-install/install_steps.pm
parent7c3fe363be7f427ce33b12186c1b961cc00998ec (diff)
downloaddrakx-backup-do-not-use-afd31bb0f770218ed23053971e7265f26cd925a6.tar
drakx-backup-do-not-use-afd31bb0f770218ed23053971e7265f26cd925a6.tar.gz
drakx-backup-do-not-use-afd31bb0f770218ed23053971e7265f26cd925a6.tar.bz2
drakx-backup-do-not-use-afd31bb0f770218ed23053971e7265f26cd925a6.tar.xz
drakx-backup-do-not-use-afd31bb0f770218ed23053971e7265f26cd925a6.zip
- move installing acpi and acpid directly in any::setupBootloader() instead of doing
it in summaryAfter(), that way acpi and acpid are installed in drakboot (bugzilla #10760) - if no acpi parameter, don't try installing acpi & acpid (fix for ppc)
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm6
1 files changed, 0 insertions, 6 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index f1539b655..0153a23a4 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -688,12 +688,6 @@ sub summary {
sub summaryAfter {
my ($o) = @_;
-
- require bootloader;
- my $acpi = bootloader::get_append($o->{bootloader}, 'acpi');
- if (!member($acpi, 'off', 'ht') && !(-x "$::prefix/usr/bin/acpi" && -x "$::prefix/usr/sbin/acpid")) {
- $o->do_pkgs->install(qw(acpi acpid));
- }
}
#------------------------------------------------------------------------------