diff options
Diffstat (limited to 'perl-install/fs.pm')
-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 3920de74b..c3f960cd8 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -280,7 +280,7 @@ sub write_fstab($;$$) { 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 ]; + [ "/dev/$device", $mntpoint, "vfat", "user,exec,conv=binary", 0, 0 ]; } grep { isFat($_) && ! exists $new{"/dev/$_->{device}"} } @$fstab; |