From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7451 invoked from network); 14 Feb 2007 18:23:11 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,FORGED_RCVD_HELO autolearn=ham version=3.1.7 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 14 Feb 2007 18:23:11 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 35446 invoked from network); 14 Feb 2007 18:23:04 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 14 Feb 2007 18:23:04 -0000 Received: (qmail 6278 invoked by alias); 14 Feb 2007 18:23:01 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 23178 Received: (qmail 6265 invoked from network); 14 Feb 2007 18:23:00 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 14 Feb 2007 18:23:00 -0000 Received: (qmail 35115 invoked from network); 14 Feb 2007 18:23:00 -0000 Received: from acolyte.scowler.net (216.254.112.45) by a.mx.sunsite.dk with SMTP; 14 Feb 2007 18:22:55 -0000 Received: by acolyte.scowler.net (Postfix, from userid 1000) id 38EF15C06B; Wed, 14 Feb 2007 13:22:51 -0500 (EST) Date: Wed, 14 Feb 2007 13:22:51 -0500 From: Clint Adams To: zsh-workers@sunsite.dk Subject: PATCH: _make-kpkg update Message-ID: <20070214182251.GA2879@scowler.net> Mail-Followup-To: zsh-workers@sunsite.dk MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) ----- Forwarded message from David Riebenbauer ----- diff -Naur zsh-4.3.2.old/Completion/Debian/Command/_make-kpkg zsh-4.3.2/Completion/Debian/Command/_make-kpkg --- zsh-4.3.2.old/Completion/Debian/Command/_make-kpkg 2005-09-02 11:16:11.000000000 +0200 +++ zsh-4.3.2/Completion/Debian/Command/_make-kpkg 2007-02-14 14:34:42.000000000 +0100 @@ -3,10 +3,9 @@ _arguments \ '--help[display help message]' \ '--revision[change Debian revision number]:number:' \ - '--append-to-version:suffix:' \ - '--flavour[specify additional kernel sub-version]:flavour:' \ - '--added-modules:module list:' \ - '--added-patches:patches list' \ + '--append-to-version[specify additional kernel sub-version]:suffix:' \ + '--added-modules[specify add-on modules]:module list:' \ + '--added-patches[specify additional patches]:patches list' \ '--arch[specify architecture for cross-compilation]:architecture' \ '--cross-compile[specify target string]:target' \ '--subarch[specify subarchitecture]:subarchitecture:' \ @@ -15,11 +14,32 @@ '--config[specify configuration target]:target:(oldconfig config menuconfig xconfig old menu x)' \ '--targets[list known targets]' \ '--noexec[pass -n option to make]' \ + '--verbose[show top level make commands]' \ '--initrd[create image suitable for initrd]' \ '(--bzimage)--zimage[make zImage instead of bzImage]' \ '(--zimage)--bzimage[make bzImage instead of zImage]' \ + '--mkimage[command that produces an initrd image given a directory]:command:' \ '--rootcmd[specify command for gaining root access]:root command:(sudo fakeroot)' \ '--stem:package name stem:(kernel linux)' \ '--us[unsigned source]' \ '--uc[unsigned changelog]' \ - '*:target:(clean buildpackage binary binary-indep binary-arch kernel-source kernel-headers kernel-doc kernel-image kernel_manual build modules modules_config modules_image modules_clean configure debian libc-kheaders)' + '*:target:(( \ + clean\:"clean the kernel source directory" \ + buildpackage\:"runs the targets clean and binary" \ + binary\:"all kernel packages" \ + binary-indep\:"arch independent packages" \ + binary-arch\:"arch dependent packages" \ + kernel-source\:"package of the kernel sources" \ + kernel-headers\:"package of the header files included in the kernel" \ + kernel_manual\:"package of the manual pages included in the kernel" \ + kernel-doc\:"package of teh documentation included in the kernel" \ + kernel-image\:"package of the kernel image" \ + build\:"compiles the kernel" \ + modules\:"build all add-on modules" \ + modules_config\:"configure all add-on modules" \ + modules_image\:"build all add-on modules, but wirhou source and diff files" \ + modules_clean\:"clean add-on modules" \ + configure\:"configure the kernel" \ + debian\:"creates the debian/ directory" \ + libc-kheaders\:"create the kernel headers package needed by libc" \ + ))' ----- End forwarded message -----