From 4a69a5a53cd68d058b05ce1cd9398eefb00aa5bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 24 Oct 2010 12:42:45 +0300 Subject: [PATCH] Add ext4 features to tune2fs -O completions. --- completions/e2fsprogs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/completions/e2fsprogs b/completions/e2fsprogs index 1a240f1b..15d9175f 100644 --- a/completions/e2fsprogs +++ b/completions/e2fsprogs @@ -144,8 +144,9 @@ _tune2fs() return 0 ;; -O) - local -a opts=(^dir_index ^filetype ^flex_bg ^has_journal - ^large_file ^resize_inode ^sparse_super ^uninit_bg) + local -a opts=(^dir_index ^dir_nlink ^extent ^extra_isize ^filetype + ^flex_bg ^has_journal ^huge_file ^large_file ^resize_inode + ^sparse_super ^uninit_bg) COMPREPLY=( $( compgen -W '${opts[@]} ${opts[@]#^}' -- "$cur" ) ) return 0 ;;