Skip to content

Commit

Permalink
Revert "EFI Filesystem must be Fat32 formatted"
Browse files Browse the repository at this point in the history
Using fat32 causes failed boots on e.g AWS EC2 arm.
This must be solved differently with an attribute
to configure it.

This reverts commit b8641bd.
  • Loading branch information
schaefi committed Aug 10, 2022
1 parent 3034e15 commit 4b17aaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kiwi/builder/disk.py
Original file line number Diff line number Diff line change
Expand Up @@ -806,11 +806,11 @@ def _build_boot_filesystems(
system_efi = None
if 'efi' in device_map:
log.info(
'Creating EFI(fat32) filesystem on %s',
'Creating EFI(fat16) filesystem on %s',
device_map['efi'].get_device()
)
filesystem = FileSystem.new(
'fat32', device_map['efi'], self.root_dir + '/boot/efi/'
'fat16', device_map['efi'], self.root_dir + '/boot/efi/'
)
filesystem.create_on_device(
label=self.disk_setup.get_efi_label()
Expand Down

0 comments on commit 4b17aaa

Please sign in to comment.