From d942c99d8cd13ee627b2e0ea04f7398240fbdfd5 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 15 Jun 2004 11:29:22 +0000 Subject: increase the number of loopbacks (needed for mandrakemove where the default (8) is much too low :) --- perl-install/devices.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/devices.pm b/perl-install/devices.pm index 434397a61..8a3654566 100644 --- a/perl-install/devices.pm +++ b/perl-install/devices.pm @@ -38,7 +38,7 @@ sub del_loop { run_program::run("losetup", "-d", $dev); } sub find_free_loop() { - foreach (0..7) { + foreach (0..255) { my $dev = make("loop$_"); sysopen(my $F, $dev, 2) or next; !ioctl($F, c::LOOP_GET_STATUS(), my $_tmp) && $! == 6 or next; #- 6 == ENXIO -- cgit v1.2.1