summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-10-09 13:58:02 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-10-09 13:58:02 +0000
commitf5107dcef4d2bec10e62fc3b64b003b28456d705 (patch)
tree6005edf8fd8e62a69ded6ec2a9381234407cab8a /perl-install/fs.pm
parent144664cc0ee14672957bcc16d0780e76d5a4ecf6 (diff)
downloaddrakx-backup-do-not-use-f5107dcef4d2bec10e62fc3b64b003b28456d705.tar
drakx-backup-do-not-use-f5107dcef4d2bec10e62fc3b64b003b28456d705.tar.gz
drakx-backup-do-not-use-f5107dcef4d2bec10e62fc3b64b003b28456d705.tar.bz2
drakx-backup-do-not-use-f5107dcef4d2bec10e62fc3b64b003b28456d705.tar.xz
drakx-backup-do-not-use-f5107dcef4d2bec10e62fc3b64b003b28456d705.zip
allow mounting devfs as well (move)
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm2
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();