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 00:58:40 +0000
committerClint Adams <clint@users.sourceforge.net>2001-10-05 00:58:40 +0000
commitad3d63eeeb08377a0d68846b2db9de5858f865a2 (patch)
tree9722716dc4b2e79a2b2f102e20f2a6f33fb53e7e /Completion/Unix/Command/_mount
parent1bbe1d1b0a60d0a35259f6dc4adf53fb1cbfe759 (diff)
downloadzsh-ad3d63eeeb08377a0d68846b2db9de5858f865a2.tar.gz
zsh-ad3d63eeeb08377a0d68846b2db9de5858f865a2.tar.xz
zsh-ad3d63eeeb08377a0d68846b2db9de5858f865a2.zip
15938: complete ext3 mount options
Diffstat (limited to 'Completion/Unix/Command/_mount')
-rw-r--r--Completion/Unix/Command/_mount8
1 files changed, 7 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_mount b/Completion/Unix/Command/_mount
index 5d0b9a0e6..69885d240 100644
--- a/Completion/Unix/Command/_mount
+++ b/Completion/Unix/Command/_mount
@@ -365,6 +365,12 @@ if (( ! $+_fs_any )); then
       'fat[specify fat type]:fat type (bit):(12 16)'
       'quiet[quiet mode]'
     )
+    _fs_ext3=(
+      "$_fs_ext2[@]"
+      'journal[update fs journal]:update or inode number:(update)'
+      'noload[do not load journal]'
+      'data[specify mode for data]:journalling mode:(journal ordered writeback)'
+    )
     _fs_msdos=( "$_fs_fat[@]" )
     _fs_umsdos=( "$_fs_fat[@]" )
     _fs_vfat=( "$_fs_fat[@]"
@@ -523,7 +529,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 )
+          hfs ntfs qnx4 smbfs udf ext3 )
     [[ -r /proc/filesystems ]] &&
         fss=( ${$(</proc/filesystems)#nodev} )
     ;;