summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-03-08 12:43:54 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-03-08 12:43:54 +0000
commit14c73ed3e756c1fcd05b50eb8fd049d9f089aaae (patch)
tree6d750fa7b077e3c2f1f54e0f5c36b04eef4c6373 /perl-install/install2.pm
parentd23d9a881f0a581a6ca78f75fc5d42fa76cb5cf6 (diff)
downloaddrakx-backup-do-not-use-14c73ed3e756c1fcd05b50eb8fd049d9f089aaae.tar
drakx-backup-do-not-use-14c73ed3e756c1fcd05b50eb8fd049d9f089aaae.tar.gz
drakx-backup-do-not-use-14c73ed3e756c1fcd05b50eb8fd049d9f089aaae.tar.bz2
drakx-backup-do-not-use-14c73ed3e756c1fcd05b50eb8fd049d9f089aaae.tar.xz
drakx-backup-do-not-use-14c73ed3e756c1fcd05b50eb8fd049d9f089aaae.zip
re-add miscellaneous step, but always hidden (aka automatic)
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r--perl-install/install2.pm13
1 files changed, 1 insertions, 12 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm
index a2284b8da..785dd2c56 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install2.pm
@@ -41,7 +41,7 @@ my (%installSteps, @orderedInstallSteps);
setupSCSI => [ __("Hard drive detection"), 1, 0, '' ],
selectMouse => [ __("Configure mouse"), 1, 1, '', "selectInstallClass" ],
selectKeyboard => [ __("Choose your keyboard"), 1, 1, '', "selectInstallClass" ],
-#- miscellaneous => [ __("Miscellaneous"), 1, 1, '!$::expert' ],
+ miscellaneous => [ __("Miscellaneous"), 1, 1, 1 ],
doPartitionDisks => [ __("Setup filesystems"), 1, 0, '', "selectInstallClass" ],
formatPartitions => [ __("Format partitions"), 1, -1, '', "doPartitionDisks" ],
choosePackages => [ __("Choose packages to install"), 1, -2, '!$::expert', "formatPartitions" ],
@@ -266,17 +266,6 @@ sub miscellaneous {
SECURITY => $o->{security},
META_CLASS => $o->{meta_class} || 'PowerPack',
});
-
- my $f = "$o->{prefix}/etc/sysconfig/usb";
- output $f,
-"USB=yes
-MOUSE=" . bool2yesno(detect_devices::usbMice()) . "
-KEYBOARD=" . bool2yesno(detect_devices::usbKeyboards()) . "
-STORAGE=" . bool2yesno(detect_devices::usbZips()) . "
-VISOR=no
-" if modules::get_alias("usb-interface") && ! -e $f;
-
- install_any::fsck_option($o);
} 'installPackages';
}