diff options
author | Mathew McBride <matt@traverse.com.au> | 2023-09-22 21:38:54 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2023-09-24 12:51:14 +0200 |
commit | f86415085b9172980ddc6cfbf852c33922792c4c (patch) | |
tree | 3ea58bef560777efe9459951a7839e9ad8d9b045 /target/linux/armsr/Makefile | |
parent | b61ac68b67427ce2eb2c81fa647a21d88ddd2a82 (diff) |
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>
Diffstat (limited to 'target/linux/armsr/Makefile')
-rw-r--r-- | target/linux/armsr/Makefile | 5 |
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)) |