From 9a2e1862e0b62edf8bcfc8f5cbfb16dd90c0e9ce Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Thu, 29 Jan 2009 17:18:59 +0000 Subject: Jörg Sommer: 26453: complete modinfo -k. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ChangeLog | 4 +++- Completion/Linux/Command/_modutils | 12 +++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3ca7c6057..e8c9fad7e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,8 @@ deprecated. * Jörg Sommer: 26452: Completion/Linux/Command/_modutils: drop completion of modinfo -f. + * Jörg Sommer: 26453: Completion/Linux/Command/_modutils: complete + modinfo -k. 2009-01-29 Peter Stephenson @@ -11043,5 +11045,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4535 $ +* $Revision: 1.4536 $ ***************************************************** diff --git a/Completion/Linux/Command/_modutils b/Completion/Linux/Command/_modutils index 3213524d7..879f64271 100644 --- a/Completion/Linux/Command/_modutils +++ b/Completion/Linux/Command/_modutils @@ -1,6 +1,7 @@ #compdef lsmod modinfo modprobe rmmod insmod local curcontext="$curcontext" expl state line modules ign args ret=1 +local -r modules_dir=/lib/modules args=( '(-)'{-V,--version}'[print version]' @@ -19,6 +20,8 @@ case "$service" in '(-)'{-p,--parameters}'[display the typed parameters that a module may support]' \ '(-)'{-F,--field}"[display only selected module's information]:module_field:( alias author depends description filename license parm)" \ + '(-)-k[use modules from a different kernel version]:kernel_version:( + $(echo $modules_dir/*(/\:t)))' \ '1:module file:->all_modules' && ret=0 ;; @@ -77,7 +80,14 @@ case "$state" in ;& all_modules) - modules=( /lib/modules/$(uname -r)/(*~source)/**/*(.:t:r) ) + local kver + integer kver_idx + if (( kver_idx=${words[(I)-k]} )); then + kver=${words[kver_idx+1]} + else + kver=$(uname -r) + fi + modules=( $modules_dir/$kver/(*~source)/**/*(.:t:r) ) if [[ $state = loadable_modules ]]; then modules=( ${modules:#(${(j:|:)~${=loaded_modules//_/-}})} ) -- cgit 1.4.1