[source] linux/modules/fs: Fix missing vfat dependencies
LEDE Commits
lede-commits at lists.infradead.org
Tue Oct 4 02:51:06 PDT 2016
blogic pushed a commit to source.git, branch master:
https://git.lede-project.org/d0f17fe68240f0f517267741fa76f64eb32f2195
commit d0f17fe68240f0f517267741fa76f64eb32f2195
Author: Daniel Dickinson <lede at cshore.thecshore.com>
AuthorDate: Thu Sep 29 04:15:46 2016 -0400
linux/modules/fs: Fix missing vfat dependencies
vfat filesystem fails to mount due to missing codepages with
factory-formatted flash drives. Depend on cp437 iso8559-1 and
utf8 nls modules as this covers most factory-formatted vfat
filesystems.
Signed-off-by: Daniel Dickinson <lede at cshore.thecshore.com>
---
package/kernel/linux/modules/fs.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk
index c42260a..fbac68b 100644
--- a/package/kernel/linux/modules/fs.mk
+++ b/package/kernel/linux/modules/fs.mk
@@ -463,7 +463,7 @@ define KernelPackage/fs-vfat
$(LINUX_DIR)/fs/fat/fat.ko \
$(LINUX_DIR)/fs/fat/vfat.ko
AUTOLOAD:=$(call AutoLoad,30,fat vfat)
- $(call AddDepends/nls)
+ $(call AddDepends/nls,cp437 iso8859-1 utf8)
endef
define KernelPackage/fs-vfat/description
More information about the lede-commits
mailing list