summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathew McBride2023-09-22 21:38:54 +0000
committerHauke Mehrtens2023-09-24 10:51:14 +0000
commitf86415085b9172980ddc6cfbf852c33922792c4c (patch)
tree3ea58bef560777efe9459951a7839e9ad8d9b045
parentb61ac68b67427ce2eb2c81fa647a21d88ddd2a82 (diff)
downloadopenwrt-f86415085b9172980ddc6cfbf852c33922792c4c.tar.gz
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@traverse.com.au>
-rw-r--r--target/linux/armsr/Makefile5
1 files 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))