Merge pull request #779 from ajeddeloh/revert-fat32

Revert "disk_util: use FAT32 on ESP"
This commit is contained in:
Andrew Jeddeloh 2017-12-18 13:40:36 -08:00 committed by GitHub
commit f22d5bed00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -423,9 +423,6 @@ def FormatFat(part, device):
cmd = ['mkfs.vfat']
if 'fs_label' in part:
cmd += ['-n', part['fs_label']]
if part['type'] == 'efi':
# ESP is FAT32 irrespective of size
cmd += ['-F', '32']
Sudo(cmd + [device, vfat_blocks], stdout_null=True)