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 <ansuelsmth@gmail.com>
This commit is contained in:
Ansuel Smith 2018-10-24 19:19:58 +02:00
parent 15fc6bf48d
commit 9f95fb3c08
No known key found for this signature in database
GPG key ID: AC001D09ADBFEAD7

View file

@ -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"))