diff options
-rw-r--r-- | move/todo | 2 | ||||
-rw-r--r-- | perl-install/devices.pm | 1 |
2 files changed, 0 insertions, 3 deletions
@@ -21,8 +21,6 @@ problem as 9.2 it seems) Click on the Menu/Doc/Howtos > Fail -mountloop doesn't work - usb key diff --git a/perl-install/devices.pm b/perl-install/devices.pm index 106a6db52..c2322d9b5 100644 --- a/perl-install/devices.pm +++ b/perl-install/devices.pm @@ -41,7 +41,6 @@ sub find_free_loop_raw { my ($o_chloop) = @_; foreach (0..7) { my $dev = make(($o_chloop && 'ch') . "loop$_"); - log::l("trying $dev"); sysopen(my $F, $dev, 2) or next; !ioctl($F, c::LOOP_GET_STATUS(), my $_tmp) && $! == 6 or next; #- 6 == ENXIO return $dev; |