package install_steps_interactive; use diagnostics; use strict; use vars qw(@ISA); @ISA = qw(install_steps); use common qw(:common); use partition_table qw(:types); use install_steps; use install_any; use detect_devices; use network; use modules; use lang; use keyboard; use fs; use log; 1; sub errorInStep($$) { my ($o, $err) = @_; $o->ask_warn(_("Error"), [ _("An error occurred"), $err ]); } sub chooseLanguage($) { my ($o) = @_; lang::text2lang($o->ask_from_list("Language", __("Which language do you want?"), # the translation may be used for the help [ lang::list() ], lang::lang2text($o->default("lang")))); } sub chooseKeyboard($) { my ($o) = @_; keyboard::text2keyboard($o->ask_from_list_("Keyboard", _("Which keyboard do you have?"), [ keyboard::list() ], keyboard::keyboard2text($o->default("keyboard")))); } sub selectInstallOrUpgrade($) { my ($o) = @_; $o->ask_from_list_(_("Install/Upgrade"), _("Is this an install or an upgrade?"), [ __("Install"), __("Upgrade") ], $o->default("isUpgrade") ? "Upgrade" : "Install") eq "Upgrade"; } sub selectInstallClass($@) { my ($o, @classes) = @_; $o->ask_from_list_(_("Install Class"), _("What type of user will you have?"), [ @classes ], $o->default("installClass")); } sub setupSCSI { setup_thiskind($_[0], 'scsi', $_[1]) } sub rebootNeeded($) { my ($o) = @_; $o->ask_warn('', _("You need to reboot for the partition table modifications to take place")); $o->SUPER::rebootNeeded; } sub choosePartitionsToFormat($$) { my ($o, $fstab) = @_; $o->SUPER::choosePartitionsToFormat($fstab); my @l = grep { $_->{mntpoint} && isExt2($_) || isSwap($_) } @$fstab; my @r = $o->ask_many_from_list_ref('', _("Choose the partitions you want to format"), [ map { $_->{mntpoint} || type2name($_->{type}) . " ($_->{device})" } @l ], [ map { \$_->{toFormat} } @l ]); defined @r or die "cancel"; } sub formatPartitions { my $o = shift; my $w = $o->wait_message('', ''); foreach (@_) { if ($_->{toFormat}) { $w->set(_("Formatting partition %s", $_->{device})); fs::format_part($_); } } } sub configureNetwork($) { my ($o, $first_time) = @_; my $r = ''; if ($o->{intf}) { if ($first_time) { my @l = ( __("Keep the current IP configuration"), __("Reconfigure network now"), __("Don't set up networking"), ); $r = $o->ask_from_list_(_("Network Configuration"), _("LAN networking has already been configured. Do you want to:"), [ @l ]); $r ||= "Don't"; } } else { $o->ask_yesorno(_("Network Configuration"), _("Do you want to configure LAN (not dialup) networking for your installed system?")) or $r = "Don't"; } if ($r =~ /^Don't/) { $o->{netc}{NETWORKING} = "false"; } elsif ($r !~ /^Keep/) { $o->setup_thiskind('net', 1, 1); my @l = detect_devices::getNet() or die _("no network card found"); my $last; foreach ($::expert ? @l : $l[0]) { my $intf = network::findIntf($o->{intf} ||= [], $_); add2hash($intf, $last); add2hash($intf, { NETMASK => '255.255.255.0' }); $o->configureNetworkIntf($intf); $last = $intf; } # { # my $wait = $o->wait_message(_("Hostname"), _("Determining host name and domain...")); # network::guessHostname($o->{prefix}, $o->{netc}, $o->{intf}); # } $o->configureNetworkNet($o->{netc} ||= {}, @l); } $o->SUPER::configureNetwork; } sub timeConfig { my ($o, $f) = @_; add2hash($o->{timezone} ||= {}, $o->default("timezone")); $o->{timezone}{GMT} = $o->ask_yesorno('', _("Is your hardware clock set to GMT?"), $o->{timezone}{GMT}); $o->{timezone}{timezone} = $o->ask_from_list('', _("In which timezone are you"), [ install_any::getTimeZones() ], $o->{timezone}{timezone}); $o->SUPER::timeConfig($f); } sub createBootdisk { my ($o, $first_time) = @_; my @l = detect_devices::floppies(); if ($first_time || @l == 1) { $o->ask_yesorno('', _("A custom bootdisk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, or another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom bootdisk can also be used with the Mandrake rescue image, making it much easier to recover from severe system failures. Would you like to create a bootdisk for your system?"), !$o->default("mkbootdisk")) or return; $o->{mkbootdisk} = $o->default("mkbootdisk") || 1; } else { @l or die _("Sorry, no floppy drive available"); $o->{mkbootdisk} = $o->ask_from_list('', _("Choose the floppy drive you want to use to make the bootdisk"), \@l, $o->default("mkbootdisk")); } $o->ask_warn('', _("Insert a floppy in drive %s", $o->{mkbootdisk})); my $w = $o->wait_message('', _("Creating bootdisk")); $o->SUPER::createBootdisk; } sub setupBootloader($) { my ($o) = @_; my @l = (__("First sector of drive"), __("First sector of boot partition")); $o->{bootloader}{onmbr} = $o->ask_from_list_(_("Lilo Installation"), _("Where do you want to install the bootloader?"), \@l, $l[!$o->default("bootloader")->{onmbr}] ) eq $l[0]; $o->SUPER::setupBootloader; } sub exitInstall { my ($o) = @_; $o->ask_warn('', _("Congratulations, installation is complete. Remove the boot media and press return to reboot. For information on fixes which are available for this release of Linux Mandrake, consult the Errata available from http://www.linux-mandrake.com/. Information on configuring your system is available in the post install chapter of the Official Linux Mandrake User's Guide.")); } sub loadModule { my ($o, $type) = @_; my @options; my $l = $o->ask_from_list('', _("What %s card have you?", $type), [ modules::text_of_type($type) ]) or return; my $m = modules::text2driver($l); if ($o->ask_from_list('', _("In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage.", $l), [ __("Autoprobe"), __("Specify options") ], "Autoprobe") ne "Autoprobe") { @options = split ' ', $o->ask_from_entry('', _("Here must give the different options for the module %s. Options are in format ``name=value name2=value2 ...''. For example you can have ``io=0x300 irq=7''", $l), _("Module options:"), ); } modules::load($m, $type, @options); $l, $m; } sub load_thiskind { my ($o, $type) = @_; my $w; modules::load_thiskind($type, sub { $w = $o->wait_message('', [ _("Installing driver for %s card %s", $type, $_->[0]), $o->{installClass} ne "beginner" ? _("(module %s)", $_->[1]) : () ]); }); } sub setup_thiskind { my ($o, $type, $auto, $at_least_one) = @_; my @l = $o->load_thiskind($type); return if $auto && (@l || !$at_least_one); while (1) { @l ? $o->ask_yesorno('', [ _("Found %s %s interfaces", join(", ", map { $_->[0] } @l), $type), _("Do you have another one?") ], "No") : $o->ask_yesorno('', _("Do you have an %s interface?", $type), "No") or return; push @l, [ $o->loadModule($type) ]; } }