History log of /freebsd-10.0-release/sbin/kldconfig/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
259065 07-Dec-2013 gjb

- Copy stable/10 (r259064) to releng/10.0 as part of the
10.0-RELEASE cycle.
- Update __FreeBSD_version [1]
- Set branch name to -RC1

[1] 10.0-CURRENT __FreeBSD_version value ended at '55', so
start releng/10.0 at '100' so the branch is started with
a value ending in zero.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


202532 17-Jan-2010 ed

Raise WARNS for various tools where possible.

Submitted by: Marius NĂ¼nnerich <marius@nuenneri.ch>


152169 07-Nov-2005 ru

Fix malloc size (visible on amd64, with "kldconfig -r").


141611 10-Feb-2005 ru

Sync program's usage() with manpage's SYNOPSIS.


140368 17-Jan-2005 ru

Added the EXIT STATUS section where appropriate.


126643 05-Mar-2004 markm

Make NULL a (void*)0 whereever possible, and fix the warnings(-Werror)
that this provokes. "Wherever possible" means "In the kernel OR NOT
C++" (implying C).

There are places where (void *) pointers are not valid, such as for
function pointers, but in the special case of (void *)0, agreement
settles on it being OK.

Most of the fixes were NULL where an integer zero was needed; many
of the fixes were NULL where ascii <nul> ('\0') was needed, and a
few were just "other".

Tested on: i386 sparc64


114589 03-May-2003 obrien

Use __FBSDID() to quiet GCC 3.3 warnings.


113936 23-Apr-2003 johan

style(9): use NULL when assigning/comparing a char *,
consitently compare fileid with 0 using == and !=.

Reviewed by: silence on @audit


113932 23-Apr-2003 johan

These are WARNS=5 clean, mark them as such to keep them that way.

Look at by: sebastian.ssmoller@web.de on audit@


102231 21-Aug-2002 trhodes

s/filesystem/file system/g as discussed on -developers


99501 06-Jul-2002 charnier

The .Nm utility


87325 04-Dec-2001 obrien

Default to WARNS=2.
Binary builds that cannot handle this must explicitly set WARNS=0.

Reviewed by: mike


80836 01-Aug-2001 obrien

This is actually making its enterance in FreeBSD 4.4.


79351 06-Jul-2001 ru

mdoc(7) police: cosmetics.


79002 29-Jun-2001 roam

Properly cast a size argument to an unsigned type.

Thanks to: dd for noticing the need for a cast.


78982 29-Jun-2001 dd

Silence warnings on the Alpha: don't assume size_t is an int.


78977 29-Jun-2001 roam

Add kldconfig(8), a utility to modify the kernel module search path.

Reviewed by: -arch, -audit