Reworked UVL schemes
[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
22 config variable
23         option name     'fstype'
24         option title    'Filesystem type'
25         option section  'fstab.mount'
26
27 config variable
28         option name     'options'
29         option title    'Mount options'
30         option section  'fstab.mount'
31
32 config variable
33         option name     'target'
34         option title    'Mount point'
35         option section  'fstab.mount'
36         option datatype 'directory'
37
38
39 config section
40         option name     'swap'
41         option title    'Swap entry'
42         option package  'fstab'
43
44 config variable
45         option name     'device'
46         option title    'Swap file or Partition'
47         option section  'fstab.swap'
48
49 config variable
50         option name     'enabled'
51         option title    'Enable this swap'
52         option section  'fstab.swap'
53         option datatype 'boolean'