diff options
author | Tom Gundersen <teg@jklm.no> | 2013-03-18 15:12:18 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-03-18 15:19:51 +0100 |
commit | a3bd8447be4ea2ce230eb8ae0e815c04d85fa15a (patch) | |
tree | b414aae2a92fe31fc9cc78fab28814c688a64e9f /shell-completion | |
parent | 72c6cf8fa586a08b56a1b5d7ed6d7c7272dff3f4 (diff) |
udev: make firmware loading optional and disable by default
Distros that whish to support old kernels should set
--with-firmware-dirs="/usr/lib/firmware/updates:/usr/lib/firmware"
to retain the old behaviour.
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/bash/udevadm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/bash/udevadm b/shell-completion/bash/udevadm index a31d465d35..123fb51633 100644 --- a/shell-completion/bash/udevadm +++ b/shell-completion/bash/udevadm @@ -93,7 +93,7 @@ _udevadm() { fi elif __contains_word "$verb" ${VERBS[TESTBUILTIN]}; then - comps='blkid btrfs firmware hwdb input_id kmod net_id path_id usb_id uaccess' + comps='blkid btrfs hwdb input_id kmod net_id path_id usb_id uaccess' fi COMPREPLY=( $(compgen -W '$comps' -- "$cur") ) |