summaryrefslogtreecommitdiff
path: root/sbin/kldconfig
Commit message (Collapse)AuthorAgeFilesLines
* kldconfig(8): Add EXAMPLES to the man pageFernando Apesteguía2020-09-291-4/+66
| | | | | | | | | | | | | | | Add EXAMPLES section to the man page showing the use of all flags except for -S. While here, clarify -f description. It not only suppresses diagnostic messages but it also affects the exit status of the command itself. This is shown in two of the examples. Approved by: bcr@ Differential Revision: https://reviews.freebsd.org/D26588 Notes: svn path=/head/; revision=366264
* various: general adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-1/+3
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. No functional change intended. Notes: svn path=/head/; revision=326276
* DIRDEPS_BUILD: Update dependencies.Bryan Drewery2017-10-311-1/+0
| | | | | | | Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325188
* Advertise kldxref(8) a little better.Edward Tomasz Napierala2017-04-271-1/+2
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=317517
* Use nitems() from sys/param.h.Marcelo Araujo2016-04-191-1/+1
| | | | | | | MFC after: 2 weeks. Notes: svn path=/head/; revision=298248
* Explicitly add more files to the 'runtime' package.Glen Barber2016-02-091-0/+1
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/projects/release-pkg/; revision=295450
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+18
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Merge head from 7/28Simon J. Gerraty2014-08-191-1/+1
| |\ | |/ |/| | | Notes: svn path=/projects/bmake/; revision=270164
| * Updated dependenciesSimon J. Gerraty2014-05-161-1/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=266219
| * Updated dependenciesSimon J. Gerraty2014-05-101-0/+2
| | | | | | | | Notes: svn path=/projects/bmake/; revision=265802
| * Merge headSimon J. Gerraty2014-04-281-27/+0
| |\ | | | | | | | | | Notes: svn path=/projects/bmake/; revision=265044
| * | Updated dependenciesSimon J. Gerraty2013-03-111-0/+1
| | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=248169
| * | Updated dependenciesSimon J. Gerraty2013-02-161-2/+0
| | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=246868
| * | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.Marcel Moolenaar2012-08-221-0/+19
| | | | | | | | | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net> Notes: svn path=/projects/bmake/; revision=239572
* | | use .Mt to mark up email addresses consistently (part1)Baptiste Daroussin2014-06-201-1/+1
| |/ |/| | | | | | | | | | | | | PR: 191174 Submitted by: Franco Fichtner <franco@lastsummer.de> Notes: svn path=/head/; revision=267667
* | kldconfig: Remove some code for compatibility with FreeBSD 4.x.Jilles Tjoelker2014-03-091-27/+0
|/ | | | | | | Verified using md5(1). Notes: svn path=/head/; revision=262946
* Raise WARNS for various tools where possible.Ed Schouten2010-01-171-1/+0
| | | | | | | Submitted by: Marius Nünnerich <marius@nuenneri.ch> Notes: svn path=/head/; revision=202532
* Fix malloc size (visible on amd64, with "kldconfig -r").Ruslan Ermilov2005-11-071-1/+1
| | | | Notes: svn path=/head/; revision=152169
* Sync program's usage() with manpage's SYNOPSIS.Ruslan Ermilov2005-02-102-3/+3
| | | | Notes: svn path=/head/; revision=141611
* Added the EXIT STATUS section where appropriate.Ruslan Ermilov2005-01-171-5/+2
| | | | Notes: svn path=/head/; revision=140368
* Make NULL a (void*)0 whereever possible, and fix the warnings(-Werror)Mark Murray2004-03-051-2/+2
| | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=126643
* Use __FBSDID() to quiet GCC 3.3 warnings.David E. O'Brien2003-05-031-4/+2
| | | | Notes: svn path=/head/; revision=114589
* style(9): use NULL when assigning/comparing a char *,Johan Karlsson2003-04-231-1/+1
| | | | | | | | | consitently compare fileid with 0 using == and !=. Reviewed by: silence on @audit Notes: svn path=/head/; revision=113936
* These are WARNS=5 clean, mark them as such to keep them that way.Johan Karlsson2003-04-231-0/+1
| | | | | | | Look at by: sebastian.ssmoller@web.de on audit@ Notes: svn path=/head/; revision=113932
* s/filesystem/file system/g as discussed on -developersTom Rhodes2002-08-211-1/+1
| | | | Notes: svn path=/head/; revision=102231
* The .Nm utilityPhilippe Charnier2002-07-061-0/+2
| | | | Notes: svn path=/head/; revision=99501
* Default to WARNS=2.David E. O'Brien2001-12-041-2/+0
| | | | | | | | | Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike Notes: svn path=/head/; revision=87325
* This is actually making its enterance in FreeBSD 4.4.David E. O'Brien2001-08-011-1/+1
| | | | Notes: svn path=/head/; revision=80836
* mdoc(7) police: cosmetics.Ruslan Ermilov2001-07-061-1/+1
| | | | Notes: svn path=/head/; revision=79351
* Properly cast a size argument to an unsigned type.Peter Pentchev2001-06-291-1/+2
| | | | | | | Thanks to: dd for noticing the need for a cast. Notes: svn path=/head/; revision=79002
* Silence warnings on the Alpha: don't assume size_t is an int.Dima Dorfman2001-06-291-1/+1
| | | | Notes: svn path=/head/; revision=78982
* Add kldconfig(8), a utility to modify the kernel module search path.Peter Pentchev2001-06-293-0/+587
Reviewed by: -arch, -audit Notes: svn path=/head/; revision=78977