* luci-0.8: backport fstab fix
[project/luci.git] / libs / uvl / root / lib / uci / schema / default / fstab
1 package fstab
2
3 config package
4 option title 'Filesystem configuration'
5
6 config section
7 option name 'mount'
8 option title 'Filesystem entry'
9 option package 'fstab'
10
11 config variable
12 option name 'device'
13 option title 'Device node'
14 option section 'fstab.mount'
15
16 config variable
17 option name 'enabled'
18 option title 'Enable this mount point'
19 option section 'fstab.mount'
20 option datatype 'boolean'
21 option required 'true'
22
23 config variable
24 option name 'fstype'
25 option title 'Filesystem type'
26 option section 'fstab.mount'
27
28 config variable
29 option name 'options'
30 option title 'Mount options'
31 option section 'fstab.mount'
32
33 config variable
34 option name 'target'
35 option title 'Mount point'
36 option section 'fstab.mount'
37 option datatype 'directory'
38
39
40 config section
41 option name 'swap'
42 option title 'Swap entry'
43 option package 'fstab'
44
45 config variable
46 option name 'device'
47 option title 'Swap file or Partition'
48 option section 'fstab.swap'
49
50 config variable
51 option name 'enabled'
52 option title 'Enable this swap'
53 option section 'fstab.swap'
54 option datatype 'boolean'