diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-09-07 17:53:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-09-07 17:53:32 +0000 |
commit | f2eb42f41d60fbad9150fad5962df90c69713192 (patch) | |
tree | 4c5fb766963350e64bde6f0b8c937b649e9560ea /perl-install/install_steps_interactive.pm | |
parent | a1f0c87ac7f98f8555717fd934edf7e706b8694c (diff) | |
download | drakx-f2eb42f41d60fbad9150fad5962df90c69713192.tar drakx-f2eb42f41d60fbad9150fad5962df90c69713192.tar.gz drakx-f2eb42f41d60fbad9150fad5962df90c69713192.tar.bz2 drakx-f2eb42f41d60fbad9150fad5962df90c69713192.tar.xz drakx-f2eb42f41d60fbad9150fad5962df90c69713192.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index d28fea76d..94e01d188 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -790,7 +790,6 @@ sub miscellaneous { ); delete @l{0,1,5} unless $::expert; - install_steps::miscellaneous($o); my $u = $o->{miscellaneous} ||= {}; exists $u->{LAPTOP} or $u->{LAPTOP} = 1; my $s = $o->{security}; @@ -804,7 +803,7 @@ sub miscellaneous { _("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 ] }, -_("Precise RAM size if needed (found %d MB)", availableRam / 1024 + 3) => \$u->{memsize}, #- add three for correction. +_("Precise RAM size if needed (found %d MB)", availableRam / 1024 + 1) => \$u->{memsize}, #- add three for correction. arch() !~ /^sparc/ ? ( _("Removable media automounting") => { val => \$o->{useSupermount}, type => 'bool', text => 'supermount' }, ) : (), $::expert ? ( @@ -829,6 +828,8 @@ _("Be carefull, having numlock enabled causes a lot of keystrokes to give digits instead of normal letters (eg: pressing `p' gives `6')")) || return; 0; } ) || return; + + install_steps::miscellaneous($o); } #------------------------------------------------------------------------------ |