diff options
| author | Timofey Titovets <nefelim4ag@gmail.com> | 2014-12-26 06:38:06 +0300 |
|---|---|---|
| committer | Peter Stephenson <pws@zsh.org> | 2015-01-05 10:21:29 +0000 |
| commit | 6425db14a49d7faed99ebf22d551ab81aab7e359 (patch) | |
| tree | e24c1e3bf8411ae446fc815b9adb273e75741c92 | |
| parent | 34092: fix miscount of symlink resolution for "..". (diff) | |
| download | zsh-6425db14a49d7faed99ebf22d551ab81aab7e359.tar zsh-6425db14a49d7faed99ebf22d551ab81aab7e359.tar.gz zsh-6425db14a49d7faed99ebf22d551ab81aab7e359.tar.bz2 zsh-6425db14a49d7faed99ebf22d551ab81aab7e359.tar.lz zsh-6425db14a49d7faed99ebf22d551ab81aab7e359.tar.xz zsh-6425db14a49d7faed99ebf22d551ab81aab7e359.tar.zst zsh-6425db14a49d7faed99ebf22d551ab81aab7e359.zip | |
34053: complete additional Linux kernel module compression
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Completion/Linux/Command/_modutils | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2015-01-05 Peter Stephenson <p.stephenson@samsung.com> + + * Timofey Titovets: 34053: Completion/Linux/Command/_modutils: + additional compression option for kernel modules. + 2015-01-04 Peter Stephenson <p.w.stephenson@ntlworld.com> * 34092: Src/utils.c: miscount of buffer length in symlink diff --git a/Completion/Linux/Command/_modutils b/Completion/Linux/Command/_modutils index 66e65d32e..0732aa106 100644 --- a/Completion/Linux/Command/_modutils +++ b/Completion/Linux/Command/_modutils @@ -107,7 +107,7 @@ _modutils() { if _cache_invalid modules-$kver || ! _retrieve_cache modules-$kver; then # 2011-01-02 gi1242: Do we need .o files? Or is .ko enough? - modules=( $modules_dir/$kver/(*~(source|build))/**/*.(o|ko|ko.gz)(.:t:r:r) ) + modules=( $modules_dir/$kver/(*~(source|build))/**/*.(o|ko|ko.gz|.ko.xz)(.:t:r:r) ) _store_cache modules-$kver modules fi |
