summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-12-07 13:53:02 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-12-07 13:53:02 +0000
commit3e881183d59b7fe80b703dfa269851e3cbf35302 (patch)
treeb22428f4a80e2735a43fe64e141fe3ad6bf72bb1 /perl-install/install_steps_interactive.pm
parent47e95567a695046e6ca3b6020345f71f400e2102 (diff)
downloaddrakx-backup-do-not-use-3e881183d59b7fe80b703dfa269851e3cbf35302.tar
drakx-backup-do-not-use-3e881183d59b7fe80b703dfa269851e3cbf35302.tar.gz
drakx-backup-do-not-use-3e881183d59b7fe80b703dfa269851e3cbf35302.tar.bz2
drakx-backup-do-not-use-3e881183d59b7fe80b703dfa269851e3cbf35302.tar.xz
drakx-backup-do-not-use-3e881183d59b7fe80b703dfa269851e3cbf35302.zip
no_comment
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 57eca154f..a32b3bd76 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -737,11 +737,14 @@ sub miscellaneous {
my $s = $o->{security};
$s = $l{$s} || $s;
+ add2hash_ $o, { useSupermount => $s < 4 };
+
!$::beginner || $clicked and $o->ask_from_entries_refH('',
_("Miscellaneous questions"), [
_("Use hard drive optimisations?") => { val => \$u->{HDPARM}, type => 'bool', text => _("(may cause data corruption)") },
_("Choose security level") => { val => \$s, list => [ map { $l{$_} } ikeys %l ], not_edit => 1 },
_("Precise RAM size if needed (found %d MB)", availableRam / 1024 + 3) => \$u->{memsize}, #- add three for correction.
+_("Removable media automounting") => { val => $o->{useSupermount}, type => 'bool', text => 'supermount' },
$u->{numlock} ? (
_("Enable num lock at startup") => { val => \$u->{numlock}, type => 'bool' },
) : (),
@@ -774,6 +777,7 @@ sub setupXfree {
{ local $::testing = 0; #- unset testing
local $::auto = $::beginner;
+ local $::noauto = $::expert && !$o->ask_yesorno('', _("Try to find PCI devices?"), 1);
Xconfigurator::main($o->{prefix}, $o->{X}, $o, $o->{allowFB}, sub {
install_any::pkg_install($o, "XFree86-$_[0]");