diff options
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r-- | perl-install/harddrake/data.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index 8d5c50637..feffcab2a 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -35,7 +35,7 @@ sub f { # FIXME: add translated items -sub is_removable { $_[0] =~ /FLOPPY|ZIP|DVDROM|CDROM|BURNER/ } +sub is_removable { $_[0] =~ /FLOPPY|ZIP/ } sub set_removable_configurator { my ($class, $device) = @_; @@ -98,7 +98,7 @@ our @tree = icon => "cd.png", configurator => "", detector => sub { f(grep { !(detect_devices::isBurner($_) || detect_devices::isDvdDrive($_)) } &detect_devices::cdroms) }, - checked_on_boot => 1, + checked_on_boot => 0, automatic => 1, }, @@ -108,7 +108,7 @@ our @tree = icon => "cd.png", configurator => "", detector => sub { f(detect_devices::burners()) }, - checked_on_boot => 1, + checked_on_boot => 0, automatic => 1, }, @@ -118,7 +118,7 @@ our @tree = icon => "cd.png", configurator => "", detector => sub { f(grep { ! detect_devices::isBurner($_) } detect_devices::dvdroms()) }, - checked_on_boot => 1, + checked_on_boot => 0, automatic => 1, }, |