summaryrefslogtreecommitdiff
path: root/shell-completion/bash/udevadm
Commit message (Collapse)AuthorAgeFilesLines
* tree-wide: beautify remaining copyright statementsLennart Poettering2018-06-141-1/+1
| | | | | | Let's unify an beautify our remaining copyright statements, with a unicode ©. This means our copyright statements are now always formatted the same way. Yay.
* Add SPDX license headers to shell completion scriptsZbigniew Jędrzejewski-Szmek2017-11-191-0/+1
|
* bash-completion: fix completion of complete verbsZbigniew Jędrzejewski-Szmek2014-02-061-1/+1
| | | | | | | When doing 'command verb<TAB>', the arguments for verb would be proposed, but it is too early. We should complete verb first. https://bugs.freedesktop.org/show_bug.cgi?id=74596
* udev: builtin - rename net_link to net_setup_linkTom Gundersen2013-10-291-1/+1
| | | | Also add shell completions.
* bash-completion: simplify udevadm completionDave Reisner2013-07-301-52/+45
| | | | | | The AA is unnecessary and only adds needless complexity. Replace it with a case statement instead of repeatedly calling __contains_word to overglorify string equalities.
* bash-completion: use a better definition of __contains_wordDave Reisner2013-07-301-3/+4
| | | | | | | | | | - scope the iterator var - use the correct, quoted, non-expansion prone positional parameter notation - prevent expansion on RHS of comparison - remove unneeded explicit returns. This really should be defined only once...
* udev: add builtin 'keyboard' to manage key mappingsKay Sievers2013-07-101-1/+1
|
* udev: make firmware loading optional and disable by defaultTom Gundersen2013-03-181-1/+1
| | | | | | Distros that whish to support old kernels should set --with-firmware-dirs="/usr/lib/firmware/updates:/usr/lib/firmware" to retain the old behaviour.
* bash-completion: split completions and move to new locationMichael Biebl2013-03-031-0/+103
Split the large bash completion script into separate, smaller files each named after the binary it is used for and move the files to /usr/share/bash-completion/completions. This way the completions can be loaded on demand and we only install the completions for the tools we actually build. The old path /etc/bash_completion.d/ is deprecated and will disappear in the future.