summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/fsedit.pm2
-rw-r--r--perl-install/install2.pm1
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index a6eea966c..b9c63ba3e 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -115,7 +115,7 @@ sub get_hds {
foreach my $hd (@drives) {
$hd->{readonly} = $flags->{readonly};
- eval { partition_table::raw::test_for_bad_drives($hd) };
+ eval { partition_table::raw::test_for_bad_drives($hd) if !$flags->{no_bad_drives} };
if (my $err = $@) {
if ($err =~ /write error:/) {
$hd->{readonly} = 1;
diff --git a/perl-install/install2.pm b/perl-install/install2.pm
index 632b33041..abfd03e92 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install2.pm
@@ -390,6 +390,7 @@ sub main {
step => sub { $o->{steps}{first} = $v },
meta_class => sub { $o->{meta_class} = $v },
freedriver => sub { $o->{freedriver} = $v },
+ no_bad_drives => sub { $o->{partitioning}{no_bad_drives} = 1 },
readonly => sub { $o->{partitioning}{readonly} = $v ne "0" },
display => sub { $o->{display} = $v },
askdisplay => sub { print "Please enter the X11 display to perform the install on ? "; $o->{display} = chomp_(scalar(<STDIN>)) },