diff options
author | Francois Pons <fpons@mandriva.com> | 2000-05-16 13:18:31 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-05-16 13:18:31 +0000 |
commit | 4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce (patch) | |
tree | 28974a4161d8a464d59781d76ebe52f98a8bc210 /perl-install/install_steps_interactive.pm | |
parent | 70800fea4199313a755c9dda383941f30c3a572a (diff) | |
download | drakx-4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce.tar drakx-4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce.tar.gz drakx-4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce.tar.bz2 drakx-4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce.tar.xz drakx-4679ec8bf83ef95a1b1e3f3c61dd21ceaab315ce.zip |
*** empty log message ***
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 21453e785..464ac7f2b 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -959,7 +959,7 @@ sub miscellaneous { exists $u->{LAPTOP} or $u->{LAPTOP} = 1; my $s = $o->{security}; - add2hash_ $o, { useSupermount => $s < 4 }; + add2hash_ $o, { useSupermount => $s < 4 && arch() =~ /^sparc/ }; $s = $l{$s} || $s; !$::beginner || $clicked and $o->ask_from_entries_refH('', @@ -967,7 +967,8 @@ sub miscellaneous { _("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' }, +arch() !~ /^sparc/ ? ( +_("Removable media automounting") => { val => \$o->{useSupermount}, type => 'bool', text => 'supermount' }, ) : (), $::expert ? ( _("Clean /tmp at each boot") => { val => \$u->{CLEAN_TMP}, type => 'bool' }, ) : (), |