From f514229af26da10b7469d2e197cbca3db151edb4 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Fri, 24 Aug 2001 13:44:39 +0000 Subject: (mount): allow to mount 'proc' and 'usbdevfs' --- perl-install/fs.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 4cb694561..8fffe95f9 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -518,7 +518,7 @@ sub mount { if (member($fs, 'smb', 'nfs') && $::isStandalone) { system('mount', $dev, $where) == 0 or die _("mount failed"); - } elsif (member($fs, 'ext2', @fs_modules)) { + } elsif (member($fs, 'ext2', 'proc', 'usbdevfs', @fs_modules)) { $dev = devices::make($dev) if $fs ne 'proc' && $fs ne 'usbdevfs'; my $flag = c::MS_MGC_VAL(); -- cgit v1.2.1