diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-01-10 02:00:46 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-01-10 02:00:46 +0000 |
commit | 4fe837d51fcc99ac6d1e80463b5e13520b250839 (patch) | |
tree | b0c87fc4611a55f95d8812e1afbcef3475459740 /perl-install/fs.pm | |
parent | 88d708135221a9b0147c08169fc03e20db45c113 (diff) | |
download | drakx-4fe837d51fcc99ac6d1e80463b5e13520b250839.tar drakx-4fe837d51fcc99ac6d1e80463b5e13520b250839.tar.gz drakx-4fe837d51fcc99ac6d1e80463b5e13520b250839.tar.bz2 drakx-4fe837d51fcc99ac6d1e80463b5e13520b250839.tar.xz drakx-4fe837d51fcc99ac6d1e80463b5e13520b250839.zip |
no_comment
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 055347234..f2f3a48de 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -274,6 +274,8 @@ sub write_fstab($;$$) { @new{($mntpoint, "/dev/$device")} = undef; mkdir "$prefix/$mntpoint", 0755 or log::l("failed to mkdir $prefix/$mntpoint: $!"); + eval { devices::make("$prefix/dev/$device") }; + [ "/dev/$device", $mntpoint, "vfat", "user,exec,conv=auto", 0, 0 ]; } grep { isFat($_) && ! exists $new{"/dev/$_->{device}"} } @$fstab; |