projects
/
openwrt
/
staging
/
pepe2k.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1fff7f2
)
linux/modules/fs: Fix missing vfat dependencies
author
Daniel Dickinson
<
[email protected]
>
Thu, 29 Sep 2016 08:15:46 +0000
(
04:15
-0400)
committer
John Crispin
<
[email protected]
>
Tue, 4 Oct 2016 09:50:48 +0000
(11:50 +0200)
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 <
[email protected]
>
package/kernel/linux/modules/fs.mk
patch
|
blob
|
history
diff --git
a/package/kernel/linux/modules/fs.mk
b/package/kernel/linux/modules/fs.mk
index c42260a96fa768cf60a802fe9be12b3985c9d06e..fbac68bc00066e2475668dd62e465f398fc02496 100644
(file)
--- 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