diff options
Diffstat (limited to 'libs/uvl/root/lib/uci/schema/default/fstab')
-rw-r--r-- | libs/uvl/root/lib/uci/schema/default/fstab | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/libs/uvl/root/lib/uci/schema/default/fstab b/libs/uvl/root/lib/uci/schema/default/fstab new file mode 100644 index 0000000000..1ef08f37d8 --- /dev/null +++ b/libs/uvl/root/lib/uci/schema/default/fstab @@ -0,0 +1,50 @@ +package fstab + +config section + option name 'mount' + option title 'Filesystem entry' + option package 'fstab' + +config variable + option name 'device' + option title 'Device node' + option section 'fstab.mount' + +config variable + option name 'enabled' + option title 'Enable this mount point' + option section 'fstab.mount' + option datatype 'boolean' + +config variable + option name 'fstype' + option title 'Filesystem type' + option section 'fstab.mount' + +config variable + option name 'options' + option title 'Mount options' + option section 'fstab.mount' + +config variable + option name 'target' + option title 'Mount point' + option section 'fstab.mount' + option datatype 'directory' + + +config section + option name 'swap' + option title 'Swap entry' + option package 'fstab' + +config variable + option name 'device' + option title 'Swap file or Partition' + option section 'fstab.swap' + +config variable + option name 'enabled' + option title 'Enable this swap' + option section 'fstab.swap' + option datatype 'boolean' |