summaryrefslogtreecommitdiffstats
path: root/usr.bin/kdump
Commit message (Collapse)AuthorAgeFilesLines
* Fix ioctl.c creation to deal with the depend case more properly.jkh2000-09-141-2/+6
| | | | Submitted by: Ruslan Ermilov <ru@sunbay.com>
* remove .PHONY to avoid gratuitous rebuild of ioctl.c each time.jkh2000-09-141-1/+1
| | | | Approved by: sef
* Unbreak world build by adding the necessary <net/ethernet.h> include.ru2000-08-021-0/+1
| | | | Submitted by: Nickolay Dudorov <nnd@wint.itfs.nsk.su>
* Make auto-generated ioctl.c to be always considered out of dateru2000-08-011-1/+1
| | | | | | since it could potentially depend on any ${DESTDIR}/usr/include preprocessor file. This fixes the broken -DNOCLEAN world build I experienced yesterday.
* Fix an off-by-nine error when building a list of includes.ru2000-08-011-1/+1
|
* more pre-requisite for new ipv6 ioctlsitojun2000-07-041-0/+3
|
* Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL"peter1999-12-291-2/+2
| | | | | | is an application space macro and the applications are supposed to be free to use it as they please (but cannot). This is consistant with the other BSD's who made this change quite some time ago. More commits to come.
* sys/dkbad.h is no more.phk1999-12-081-1/+0
|
* Avoid hardcoding any paths and variables. The include directory mustmarcel1999-12-032-8/+19
| | | | | | | | | | now be specified on the command line. Accept a '-s' option which controls whether a switch-statement is to be used instead of a series of if-statements. Replace cpp with gcc -E. Discussed with: bde
* Make sure DESTDIR is set in the environment of mkioctls. This fixesmarcel1999-12-021-1/+2
| | | | | | | the breakage people have encountered at certain times (for example when the altq_*.h files were removed). $FreeBSD$ tag added.
* Unbreak build world by readding the necessary ipfilter includes.guido1999-11-241-0/+6
|
* ioctlname() is actually passed a register_t.dfr1999-11-101-1/+1
| | | | Pointed out by: bde
* Fix a boatload of warnings in the generated code on the alpha.dfr1999-11-091-1/+1
|
* Ack, ip_mroute.h is not an ipfilter include. :-/peter1999-10-111-0/+1
| | | | Submitted by: Mike Heffner <spock@techfour.net>
* Don't #include ipfilter includes that aren't there anymore.peter1999-10-101-7/+0
|
* Remove the inclusion of device.h. It's no longer there.n_hibma1999-10-061-1/+2
|
* $Id$ -> $FreeBSD$peter1999-08-282-2/+2
|
* Decode new ptrace requests PT_GETDBREGS and PT_SETDBREGS.bde1999-07-171-1/+9
|
* Decode all currently supported values of the ptrace `request' arg.bde1999-06-261-3/+20
|
* Syscall arguments are now properly aligned. Print them, and syscall returndt1999-06-161-16/+16
| | | | values, as longs, instead of int.
* FIx the output of long command names.jmz1999-05-211-2/+2
| | | | | PR: bin/10027 Submitted by: Arne Henrik Juul <arnej@math.ntnu.no>
* we don't have <sys/disk.h> anymore.phk1999-05-081-1/+0
|
* Generate code to interpret ioctl numbers for all ioctls defined inbde1998-10-161-12/+50
| | | | | | | | | | | | | headers under /usr/include, not just for the ones in <sys/ioctl.h>. The generated file includes all headers that seem to define ioctls, so build errors will probably occur if headers become less self- sufficient than they are already. This is a feature. Build errors shall not be fixed by adding more includes here. Optionally generate a case statement instead of a list of if statements. This source must be edited to change this. The case statement should be non-optional. It currently can't be, because many ioctl numbers are not unique.
* Use err(3). Correct incomplete man page.charnier1997-07-162-36/+23
|
* Spelling correction (`1 bytes' is now printed `1 byte')charnier1997-05-221-2/+3
| | | | | PR: bin/3376 Submitted by: me
* ``appears'' -> ``appeared'' (closes PR#3393, Submitted-by: Josh Gilliam)jmg1997-04-271-6/+8
| | | | | add missing Id's other minor clean ups
* compare return value from getopt against -1 rather than EOF, per the finalimp1997-03-291-1/+1
| | | | posix standard on the topic.
* Fix up programs which expect <net/if.h> to include <sys/time.h> to insteadwollman1996-12-101-0/+1
| | | | | | do it themselves. (Some of these programs actually depended on this beyond compiling the definition of struct ifinfo!) Also fix up some other #include messes while we're at it.
* Fix arg parsing. kdump used to allow a single argument, which itfenner1996-11-181-3/+1
| | | | silently ignored.
* Remove length field from utrace entries.phk1996-09-221-6/+6
|
* For now we just hexdump the stuff in USER records.phk1996-09-192-3/+20
|
* Run the headers through cpp -dM to find the #defines. The direct searchbde1996-06-231-2/+8
| | | | | | | | | | has been broken at least since 4.4Lite moved most of the #defines out of <sys/ioctl.h>. This should be done better. Only a few headers are searched. Added some #includes so that ioctl.c compiles. The networking headers have a maze of undocumented interdependencies and ioctl.c now actually supports networking ioctls.
* Include queue.h in preparation for upcoming struct socket changes.dg1996-03-111-0/+1
|
* Add setlocale LC_CTYPEache1995-10-261-0/+3
|
* Remove trailing whitespace.rgrimes1995-05-301-1/+1
|
* -I${.CURDIR}/../..phk1994-11-211-1/+1
|
* Absolute path to /sys again...phk1994-11-211-1/+1
|
* Added $DESTDIR toswallace1994-09-151-1/+1
| | | | | $DESTDIR/usr/include/sys/ioctl.h $DESTDIR/usr/include/sys/ioctl_compat.h so ioctl.c is generated properly using 2.0 include files in $DESTDIR.
* move #include of <sys/errno.h> so that #defining KERNEL actually has an effect,csgr1994-08-221-3/+4
| | | | | | and then also add a declaration of ernno as an extern int, because we lose that due to having KERNEL defined while we include errno.h. Reviewed by: Geoff.
* BSD 4.4 Lite Usr.bin Sourcesrgrimes1994-05-274-0/+582
OpenPOWER on IntegriCloud