lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 28 Feb 2008 19:32:34 +0100
From:	Sam Ravnborg <sam@...nborg.org>
To:	Randy Dunlap <randy.dunlap@...cle.com>
Cc:	Andrew Morton <akpm@...ux-foundation.org>,
	lkml <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] kernel-doc: set verbose mode via environment

On Thu, Feb 28, 2008 at 08:30:09AM -0800, Randy Dunlap wrote:
> On Wed, 27 Feb 2008 19:11:04 -0800 Andrew Morton wrote:
> 
> > On Sun, 24 Feb 2008 17:53:58 -0800 Randy Dunlap <randy.dunlap@...cle.com> wrote:
> > 
> > > From: Randy Dunlap <randy.dunlap@...cle.com>
> > > 
> > > Allow setting environment variable "KERNEL_DOC_VERBOSE=1" to enable
> > > verbose mode in scripts/kernel-doc.  Useful for getting more
> > > info and warnings from kernel-doc.
> > > 
> > > Signed-off-by: Randy Dunlap <randy.dunlap@...cle.com>
> > > ---
> > >  scripts/kernel-doc |    4 ++++
> > >  1 file changed, 4 insertions(+)
> > > 
> > > --- linux-2.6.25-rc3.orig/scripts/kernel-doc
> > > +++ linux-2.6.25-rc3/scripts/kernel-doc
> > > @@ -247,6 +247,10 @@ my ($function, %function_table,%paramete
> > >  my ($type,$declaration_name,$return_type);
> > >  my ($newsection,$newcontents,$prototype,$filelist, $brcount, %source_map);
> > >  
> > > +if (defined($ENV{'KERNEL_DOC_VERBOSE'})) {
> > > +	$verbose = "$ENV{'KERNEL_DOC_VERBOSE'}";
> > > +}
> > > +
> > >  # Generated docbook code is inserted in a template at a point where
> > >  # docbook v3.1 requires a non-zero sequence of RefEntry's; see:
> > >  # http://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
> > 
> > Shouldn't this be, err, documented somewhere?
> 
> I did think about that.  I was still wondering where to add it.
In the same file where you document all the kconfig stuff - so we can let it be
a 'all build features ' document?

> 
> > I'd have expected to obtain this functionality by running `make V=1 foodocs'?
> 
> Sam, any thoughts on Makefile passing "-v" to scripts/kernel-doc ?
Please implemnt this. Either add a flag to docproc or
just read the env-variable KBUILD_VERBOSE in kernel-doc.

	Sam
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists