diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-01-27 22:15:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-01-27 22:15:55 +0000 |
commit | f5b6d853f3ed37cd88f4797f7bfb41fef7dd81ce (patch) | |
tree | 0e4db5f684c4e5dac4779c78a2ca90cf63aa5079 /perl-install/install_steps_interactive.pm | |
parent | de9cfda6393333a5a9e69e666aa6f56b8971c16c (diff) | |
download | drakx-f5b6d853f3ed37cd88f4797f7bfb41fef7dd81ce.tar drakx-f5b6d853f3ed37cd88f4797f7bfb41fef7dd81ce.tar.gz drakx-f5b6d853f3ed37cd88f4797f7bfb41fef7dd81ce.tar.bz2 drakx-f5b6d853f3ed37cd88f4797f7bfb41fef7dd81ce.tar.xz drakx-f5b6d853f3ed37cd88f4797f7bfb41fef7dd81ce.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index a3275a7ce..612129988 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -932,7 +932,10 @@ sub setupBootloaderBefore { #------------------------------------------------------------------------------ sub setupBootloader { - if (arch() =~ /^sparc/) { + if (arch() =~ /^i386/) { + $o->ask_yesorno('', _("Do you want to use aboot?"), 1) or return; + $o->SUPER::setupBootloader; + } elsif (arch() =~ /^sparc/) { &setupSILO; } else { &setupLILO; @@ -1131,7 +1134,7 @@ sub load_thiskind { if ($type =~ /scsi/i && cat_("/proc/cmdline") !~ /ide2=/) { require pci_probing::main; my @l = map { $_->[0] } grep { $_->[1] =~ /(HPT|Ultra66)/ } pci_probing::main::probe('STORAGE_OTHER', 'more'); - if ($o->ask_yesorno('', + if (@l && $o->ask_yesorno('', _("Linux does not yet fully support ultra dma 66. As a work-around i can make a custom floppy giving access the hard drive on ide2 and ide3"), 1)) { log::l("HPT|Ultra66: found"); |