about summary refs log tree commit diff
path: root/Completion/Unix/Command/_mount
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2001-10-05 01:46:27 +0000
committerClint Adams <clint@users.sourceforge.net>2001-10-05 01:46:27 +0000
commitbf15727e383536b1be06e8bba56a1662fba6b11d (patch)
tree26099e80b8f22df691c8a14026c64cd35ab91119 /Completion/Unix/Command/_mount
parent8c75b8b4f04015cd8186c79d6d126e8f2c5dccbe (diff)
downloadzsh-bf15727e383536b1be06e8bba56a1662fba6b11d.tar.gz
zsh-bf15727e383536b1be06e8bba56a1662fba6b11d.tar.xz
zsh-bf15727e383536b1be06e8bba56a1662fba6b11d.zip
15941: complete reiserfs mount options.
Diffstat (limited to 'Completion/Unix/Command/_mount')
-rw-r--r--Completion/Unix/Command/_mount13
1 files changed, 12 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_mount b/Completion/Unix/Command/_mount
index a3f3d3a44..f45e07971 100644
--- a/Completion/Unix/Command/_mount
+++ b/Completion/Unix/Command/_mount
@@ -391,6 +391,17 @@ if (( ! $+_fs_any )); then
       'sunit[specify stripe unit]:size:'
       'swidth[specify stripe width]:size:'
     )
+    _fs_reiserfs=(
+    'conv[mount 3.5 fs using 3.6 format for new objects]'
+    'hash[choose hash type]:hash function:(rupasov tea r5 detect)'
+    '(no_unhashed_relocation)hashed_relocation[tune the block allocator]'
+    'noborder[disable border allocator algorithm]'
+    'nolog[disable journalling]'
+    'notail[disable packing of files into the tree]'
+    '(hashed_relocation)no_unhashed_relocation[tune the block allocator]'
+    'replayonly[replay but do not mount]'
+    'resize[assume the device has this many blocks]:number of blocks:'
+    )
     ;;
   freebsd*)
     _fs_any=(
@@ -506,7 +517,7 @@ if [[ "$service" = mount ]]; then
     )
     fss=( minix ext ext2 xiafs hpfs msdos umsdos vfat proc nfs iso9660
           smbfs ncpfs affs ufs romfs sysv adfs autofs coda devpts efs
-          hfs ntfs qnx4 smbfs udf ext3 xfs )
+          hfs ntfs qnx4 smbfs udf ext3 xfs reiserfs )
     [[ -r /proc/filesystems ]] &&
         fss=( ${$(</proc/filesystems)#nodev} )
     ;;