svn commit: r275961 - head/sys/arm/conf

Ian Lepore ian at freebsd.org
Sun Dec 21 16:45:14 UTC 2014


On Sun, 2014-12-21 at 08:07 +0000, Alexey Dokuchaev wrote:
> On Sat, Dec 20, 2014 at 06:15:24PM +0000, Andrew Turner wrote:
> > Author: andrew
> > Date: Sat Dec 20 18:15:23 2014
> > New Revision: 275961
> > URL: https://svnweb.freebsd.org/changeset/base/275961
> > 
> > Log:
> >   Clean up to use the standard style of "options \t" and "device\t\t"
> > 
> >  options  	HZ=500			# Scheduling quantum is 2 milliseconds.
> > [...]
> > -options  	KDB			# Enable kernel debugger support.
> > +options 	KDB			# Enable kernel debugger support.
> >  # For minimum debugger support use KDB_TRACE, for interactive use DDB.
> > -#options  	KDB_TRACE		# Print a stack trace for a panic.
> > -options  	DDB			# Support DDB.
> > +#options 	KDB_TRACE		# Print a stack trace for a panic.
> > +options 	DDB			# Support DDB.
> >  # For full debugger support use this instead:
> > -#options  	GDB			# Support remote GDB.
> > +#options 	GDB			# Support remote GDB.
> > [...]
> 
> It also would be nice if we removed trailing dots in comments one day,
> preferreably across all config files we have in the tree.
> 
> ./danfe
> 

Why?  I thought our rule about comments is that they're complete
sentences, punctuated as such.

Of course, I also thought we had a rule that 'device' and 'options' in
kernel config is always followed by two spaces then a tab, so that you
can comment out lines without ruining the indent, and apparently that's
not true either (and I have no idea where I got that notion).

-- Ian




More information about the svn-src-head mailing list