On Sun Oct 20, 2024 at 8:49 PM CEST, Pascal Hambourg wrote:
On 20/10/2024 at 16:28, Diederik de Haas wrote:
```
root@cs21:~# parted -s /dev/mmcblk1 print
Model: MMC NCard (sd/mmc)
Disk /dev/mmcblk1: 61.9GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
1 32.8kB 16.8MB 16.7MB primary
2 16.8MB 256MB 239MB fat16 primary boot, esp
3 256MB 61.9GB 61.6GB ext4 primary
root@cs21:~# lsblk -o +PARTFLAGS,FSTYPE /dev/mmcblk1
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS PARTFLAGS FSTYPE
mmcblk1 179:0 0 57.6G 0 disk
├─mmcblk1p1 179:1 0 16M 0 part
├─mmcblk1p2 179:2 0 228M 0 part /boot/efi vfat
└─mmcblk1p3 179:3 0 57.4G 0 part / ext4
```
Partition 2 looks like a regular EFI partition mounted on /boot/efi as
expected by GRUB. With a size of 239MB it should be FAT32 instead of
FAT16, but maybe the UEFI firmware expects only FAT16 or does not care.
I don't care enough (about FAT) to look into it, but I think 'vfat' can
mean either FAT16 or FAT32?