summaryrefslogtreecommitdiff
path: root/usr.sbin/kldxref/kldxref.c
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagrelease/6.3.0_cvscvs2svn2008-01-151-1/+1
| | | | | | 'RELENG_6_3_0_RELEASE'. This commit was manufactured to restore the state of the 6.3-RELEASE image.
* Add support for reading ELF relocatable object file format modules.Ian Dowse2004-08-271-3/+6
| | | | Notes: svn path=/head/; revision=134361
* Call the file format specific code through a table of functionIan Dowse2004-08-271-16/+18
| | | | | | | | pointers and remove knowledge of the file format from kldxref.c. This will make it possible to support more than one file format. Notes: svn path=/head/; revision=134358
* Fixed manpage's synopsis, and synchronized it with the program's usage().Ruslan Ermilov2004-06-011-1/+1
| | | | Notes: svn path=/head/; revision=129930
* Check that specified in the command line path is actually a directory,Maxim Sobolev2004-04-301-0/+9
| | | | | | | otherwise we are risking to coredump later on. Notes: svn path=/head/; revision=128742
* Remove bogus (void **) casts. This unbreaks the -O2 build.Dag-Erling Smørgrav2004-03-151-3/+3
| | | | Notes: svn path=/head/; revision=127029
* Fix kldxref on sparc64 by allowing non-trivial relocations to be performedJake Burkholder2003-01-211-2/+3
| | | | | | | | | | | | on variables read out of raw kld files. Unlike other platforms the value will be in an Elf_Rela, not in the data section of the elf file. Submitted by: Hartmut Brandt <brandt@fokus.gmd.de> PR: 46730 Tested on: alpha (obrien), i386, sparc64 Notes: svn path=/head/; revision=109607
* Usage style sweep: spell "usage" with a small 'u'.Dag-Erling Smørgrav2002-04-221-1/+1
| | | | | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/. Notes: svn path=/head/; revision=95258
* Remove unnecessary machine/bootinfo.h includes.John Baldwin2002-01-031-1/+0
| | | | | | | Submitted by: jake Notes: svn path=/head/; revision=88853
* WARNS=2 cleanup.Mike Heffner2001-12-091-1/+2
| | | | | | | | PR: bin/32567 MFC after: 2 weeks Notes: svn path=/head/; revision=87551
* Add kldxref(8), for maintaining the linker.hints file for translatingPeter Wemm2001-09-111-0/+346
module->pathname.ko. It supports only ELF for now. Submitted by: bp (with some minor tweaks) Notes: svn path=/head/; revision=83322