From 9f95fb3c08cbde6c6ef9b1f7dbd3732d016854fd Mon Sep 17 00:00:00 2001 From: Ansuel Smith Date: Wed, 24 Oct 2018 19:19:58 +0200 Subject: [PATCH] luci-mod-system: add support for additional filesystem The filesystem option doesn't include additional filesystem included with /etc/filesystems, this is usefull if someone have ntfs-3g installed and wants to force use the external utility to mount partition instead of the default present in the kernel (if it's supported) Signed-off-by: Ansuel Smith --- .../luasrc/model/cbi/admin_system/fstab/mount.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua index a85872afa..f21a2775e 100644 --- a/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua +++ b/modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua @@ -136,6 +136,13 @@ for fs in io.lines("/proc/filesystems") do end end +local ok, lines = pcall(io.lines, "/etc/filesystem") +if ok then + local fs + for fs in lines do + o:value(fs) + end +end o = mount:taboption("advanced", Value, "options", translate("Mount options"), translate("See \"mount\" manpage for details")) -- 2.25.1