diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-09 13:58:02 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-09 13:58:02 +0000 |
commit | f5107dcef4d2bec10e62fc3b64b003b28456d705 (patch) | |
tree | 6005edf8fd8e62a69ded6ec2a9381234407cab8a | |
parent | 144664cc0ee14672957bcc16d0780e76d5a4ecf6 (diff) | |
download | drakx-f5107dcef4d2bec10e62fc3b64b003b28456d705.tar drakx-f5107dcef4d2bec10e62fc3b64b003b28456d705.tar.gz drakx-f5107dcef4d2bec10e62fc3b64b003b28456d705.tar.bz2 drakx-f5107dcef4d2bec10e62fc3b64b003b28456d705.tar.xz drakx-f5107dcef4d2bec10e62fc3b64b003b28456d705.zip |
allow mounting devfs as well (move)
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index e75e855db..361ba9d0b 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -702,7 +702,7 @@ sub mount { $o_wait_message->(N("Mounting partition %s", $dev)) if $o_wait_message; system('mount', '-t', $fs, $dev, $where, if_($o_options, '-o', $o_options)) == 0 or die \N("mounting partition %s in directory %s failed", $dev, $where); return; #- do not update mtab, already done by mount(8) - } elsif (member($fs, 'ext2', 'proc', 'usbdevfs', 'iso9660', @fs_modules)) { + } elsif (member($fs, 'ext2', 'proc', 'usbdevfs', 'iso9660', 'devfs', @fs_modules)) { $where =~ s|/$||; my $flag = c::MS_MGC_VAL(); |