diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-23 12:43:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-23 12:43:50 +0000 |
commit | 030ccaf05de11e1b7897c170988bd6596fed8a55 (patch) | |
tree | d64e7ed9a6c9ce774205629c6dd475265faf9444 /perl-install | |
parent | dfc9f2bfee33fb1e1a9b5333ee9f53c0f1da136c (diff) | |
download | drakx-030ccaf05de11e1b7897c170988bd6596fed8a55.tar drakx-030ccaf05de11e1b7897c170988bd6596fed8a55.tar.gz drakx-030ccaf05de11e1b7897c170988bd6596fed8a55.tar.bz2 drakx-030ccaf05de11e1b7897c170988bd6596fed8a55.tar.xz drakx-030ccaf05de11e1b7897c170988bd6596fed8a55.zip |
(getHds): do not handle missing harddrives by calling setupSCSI, since
setupSCSI do it by itself now
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index af259f7dd..f52bbc87d 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -983,18 +983,11 @@ sub use_root_part { sub getHds { my ($o, $in) = @_; - my $try_scsi = !$::expert; getHds: my $all_hds = fsedit::get_hds($o->{partitioning}, $in); my $hds = $all_hds->{hds}; - if (is_empty_array_ref($hds) && $try_scsi) { - $try_scsi = 0; - $o->setupSCSI; #- ask for an unautodetected scsi card - goto getHds; - } - if (is_empty_array_ref($hds)) { #- no way die N("An error occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem"); } |