]> git.ipfire.org Git - thirdparty/dracut.git/blame - dracut-bash-completion.sh
add support for Zstandard
[thirdparty/dracut.git] / dracut-bash-completion.sh
CommitLineData
336bd09d 1#
917f3e4d
HH
2# Copyright 2013 Red Hat, Inc. All rights reserved.
3#
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16#
17
18__contains_word () {
19 local word=$1; shift
20 for w in $*; do [[ $w = $word ]] && return 0; done
21 return 1
22}
23
24_dracut() {
25 local field_vals= cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
26 local -A OPTS=(
27 [STANDALONE]='-f -v -q -l -H -h -M -N
28 --ro-mnt --force --kernel-only --no-kernel --strip --nostrip
29 --hardlink --nohardlink --noprefix --mdadmconf --nomdadmconf
30 --lvmconf --nolvmconf --debug --profile --verbose --quiet
31 --local --hostonly --no-hostonly --fstab --help --bzip2 --lzma
7dbadcc7 32 --xz -zstd --no-compress --gzip --list-modules --show-modules --keep
5bbfd484 33 --printsize --regenerate-all --noimageifnotneeded --early-microcode
37383f71 34 --no-early-microcode --print-cmdline --prelink --noprelink --reproducible
636d2d46 35 --uefi
37383f71 36 '
917f3e4d
HH
37
38 [ARG]='-a -m -o -d -I -k -c -L --kver --add --force-add --add-drivers
39 --omit-drivers --modules --omit --drivers --filesystems --install
40 --fwdir --libdirs --fscks --add-fstab --mount --device --nofscks
41 --kmoddir --conf --confdir --tmpdir --stdlog --compress --prefix
37383f71 42 --kernel-cmdline --sshkey --persistent-policy --install-optional
636d2d46 43 --loginstall --uefi-stub --kernel-image
37383f71 44 '
917f3e4d
HH
45 )
46
47 if __contains_word "$prev" ${OPTS[ARG]}; then
48 case $prev in
46a885bf 49 --kmoddir|-k|--fwdir|--confdir|--tmpdir)
917f3e4d
HH
50 comps=$(compgen -d -- "$cur")
51 compopt -o filenames
52 ;;
54b68829 53 -c|--conf|--sshkey|--add-fstab|--add-device|-I|--install|--install-optional)
46a885bf
HH
54 comps=$(compgen -f -- "$cur")
55 compopt -o filenames
56 ;;
917f3e4d
HH
57 -a|-m|-o|--add|--modules|--omit)
58 comps=$(dracut --list-modules 2>/dev/null)
59 ;;
324ea606
HH
60 --persistent-policy)
61 comps=$(cd /dev/disk/; echo *)
62 ;;
fb05f987 63 --kver)
46a885bf 64 comps=$(cd /lib/modules; echo [0-9]*)
fb05f987 65 ;;
917f3e4d
HH
66 *)
67 return 0
68 ;;
69 esac
70 COMPREPLY=( $(compgen -W '$comps' -- "$cur") )
71 return 0
72 fi
73
74 if [[ $cur = -* ]]; then
75 COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
76 return 0
77 fi
78}
79
80complete -F _dracut dracut