From b3aad969a089f3809d43526845e5af686a526253 Mon Sep 17 00:00:00 2001 From: Valentin David Date: Tue, 20 Jun 2023 10:06:29 +0200 Subject: [PATCH] Add mkfs.vfat for u-boot gadgets U-boot needs to save `boot.sel` back to the boot partition. Because ext4 is not safe to write on some U-Boot builds due to journal corruption, we need to allow the gadget to create the boot partition as a vfat. Which means `mkfs.vfat` is required during installation. --- debian/rules | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/rules b/debian/rules index 31ab2647..8e454b7a 100755 --- a/debian/rules +++ b/debian/rules @@ -26,6 +26,7 @@ INSTALL_FILES_FROM_HOST= \ /sbin/fsck.vfat \ /sbin/fsck.vfat \ /sbin/mkfs.ext4 \ + /sbin/mkfs.vfat \ /sbin/sfdisk \ /usr/bin/dbus-daemon \ /usr/bin/mountpoint \