[openwrt/openwrt] armsr: ensure kmod-fs-vfat is selected for mounting ESP

LEDE Commits lede-commits at lists.infradead.org
Sun Sep 24 03:51:51 PDT 2023


hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/f86415085b9172980ddc6cfbf852c33922792c4c

commit f86415085b9172980ddc6cfbf852c33922792c4c
Author: Mathew McBride <matt at traverse.com.au>
AuthorDate: Fri Sep 22 21:38:54 2023 +0000

    armsr: ensure kmod-fs-vfat is selected for mounting ESP
    
    vfat support is needed to mount the EFI System Partition (ESP)
    during sysupgrade. If it is not available, the sysupgrade process
    will not complete
    
    Signed-off-by: Mathew McBride <matt at traverse.com.au>
---
 target/linux/armsr/Makefile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/target/linux/armsr/Makefile b/target/linux/armsr/Makefile
index b34500ed8a..7de77decb5 100644
--- a/target/linux/armsr/Makefile
+++ b/target/linux/armsr/Makefile
@@ -15,7 +15,8 @@ include $(INCLUDE_DIR)/target.mk
 
 DEFAULT_PACKAGES += mkf2fs e2fsprogs
 # blkid used for resolving PARTUUID
-# in sysupgrade
-DEFAULT_PACKAGES += blkid
+# in sysupgrade. vfat required for
+# mounting ESP partition
+DEFAULT_PACKAGES += blkid kmod-fs-vfat
 
 $(eval $(call BuildTarget))




More information about the lede-commits mailing list