From f341dfe91a766003a9333725e88823e2866fb3c8 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Mon, 7 Apr 2008 21:01:39 +0000 Subject: * Added configuration pages for Dropbear, HTTPd, Mount Points * Reorganized menu structure * Prepare firmware upgrade mechanism --- src/ffluci/model/cbi/admin_system/fstab.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/ffluci/model/cbi/admin_system/fstab.lua (limited to 'src/ffluci/model/cbi/admin_system') diff --git a/src/ffluci/model/cbi/admin_system/fstab.lua b/src/ffluci/model/cbi/admin_system/fstab.lua new file mode 100644 index 0000000000..cf9a483d78 --- /dev/null +++ b/src/ffluci/model/cbi/admin_system/fstab.lua @@ -0,0 +1,21 @@ +m = Map("fstab", "Einhängepunkte") + +mount = m:section(TypedSection, "mount", "Einhängepunkte") +mount.anonymous = true +mount.addremove = true + +mount:option(Flag, "enabled", "aktivieren") +mount:option(Value, "device", "Gerät") +mount:option(Value, "target", "Einhängepunkt") +mount:option(Value, "fstype", "Dateisystem") +mount:option(Value, "options", "Optionen") + + +swap = m:section(TypedSection, "swap", "SWAP") +swap.anonymous = true +swap.addremove = true + +swap:option(Flag, "enabled", "aktivieren") +swap:option(Value, "device", "Gerät") + +return m -- cgit v1.2.3