diff options
author | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2001-11-12 15:24:50 +0000 |
---|---|---|
committer | Gwenolé Beauchesne <gbeauchesne@mandriva.org> | 2001-11-12 15:24:50 +0000 |
commit | 6d6a4fc8a5f301eaaec2e97401497ca7308463b2 (patch) | |
tree | fc88925ecbbe7a8ba51b55701069729e96283b5c | |
parent | 86835bc55c980129a52ea09c0e9c1e0022aff07d (diff) | |
download | drakx-6d6a4fc8a5f301eaaec2e97401497ca7308463b2.tar drakx-6d6a4fc8a5f301eaaec2e97401497ca7308463b2.tar.gz drakx-6d6a4fc8a5f301eaaec2e97401497ca7308463b2.tar.bz2 drakx-6d6a4fc8a5f301eaaec2e97401497ca7308463b2.tar.xz drakx-6d6a4fc8a5f301eaaec2e97401497ca7308463b2.zip |
- Format EFI partitions in FAT32
-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 88792c312..90479123b 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -500,7 +500,7 @@ sub real_format_part { format_jfs($part->{device}, @options); } elsif (isDos($part)) { format_dos($part->{device}, @options); - } elsif (isWin($part)) { + } elsif (isWin($part) || isEfi($part)) { format_dos($part->{device}, @options, '-F', 32); } elsif (isThisFs('hfs', $part)) { format_hfs($part->{device}, @options, '-l', "Untitled"); |