aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/lsdev
Commit message (Collapse)AuthorAgeFilesLines
* Remove lsdev. Devconf never grew up.Poul-Henning Kamp1996-09-065-567/+0
| | | | Notes: svn path=/head/; revision=18081
* Add a public domain notice to these files.Garrett Wollman1996-06-183-0/+9
| | | | | | | Requested by: jkh, 03 Sep 1995 Notes: svn path=/head/; revision=16481
* Decend the list of ioaddrs and maddrs for eisa devices and print them outJustin T. Gibbs1996-01-311-6/+17
| | | | | | | for lsdev -c. Notes: svn path=/head/; revision=13806
* Fix a bunch of spelling errors in a bunch of man pages.Mike Pritchard1996-01-301-3/+3
| | | | Notes: svn path=/head/; revision=13744
* Unspammed #includes.Bruce Evans1995-12-133-25/+32
| | | | | | | Fixed printf format strings. Notes: svn path=/head/; revision=12812
* Add #include <vm/pmap.h> to make lsdev compile again after the last roundPeter Wemm1995-12-131-0/+1
| | | | | | | of include file changes.... Notes: svn path=/head/; revision=12807
* Make this compile again by adding the necessary includes.Poul-Henning Kamp1995-11-171-0/+6
| | | | Notes: svn path=/head/; revision=12345
* Make lsdev eisaconf aware.Justin T. Gibbs1995-11-101-5/+9
| | | | Notes: svn path=/head/; revision=12178
* Remove trailing whitespace.Rodney W. Grimes1995-05-302-9/+9
| | | | Notes: svn path=/head/; revision=8857
* Moved "#include <pci/pcivar.h>" from "usr.sbin/lsdev/i386.c"Stefan Eßer1995-02-041-1/+0
| | | | | | | to "/sys/i386/include/devconf.h", where it really belongs. Notes: svn path=/head/; revision=6178
* Add #include <pci/pcivar.h> for definition of PCI_EXTERNAL_LEN.Stefan Eßer1995-02-031-0/+1
| | | | | | | | | Reviewed by: Submitted by: Obtained from: Notes: svn path=/head/; revision=6158
* Changed an LSDEV 1 to LSDEV 8 .Andreas Schulz1994-12-121-2/+2
| | | | Notes: svn path=/head/; revision=5066
* Submitted by: Wolfgang Stanglmeier <wolf@dentaro.GUN.de>Stefan Eßer1994-11-021-9/+32
| | | | | | | Added PCI support code. Notes: svn path=/head/; revision=4098
* When -v not given, display longer `state' and no `parent'.Garrett Wollman1994-10-241-11/+32
| | | | Notes: svn path=/head/; revision=3837
* Updated to latest kernel code. Also provided a friendlier output format,Garrett Wollman1994-10-234-27/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | which is enabled by default (use `-c' to get the old format). The new format looks like this (only the values are correct; this was taken on my machine with a slightly old kernel): Device St Parent Description ---------- -- ---------- -------------------------------------------------- isa0 NC - sc0 NC isa0 Parallel printer adapter ed0 NC isa0 SMC8216/SMC8216C sio0 NC isa0 RS-232 serial port sio1 NC isa0 RS-232 serial port fdc0 NC isa0 floppy disk/tape controller fd0 NC fdc0 floppy disk wdc0 NC isa0 ST506/ESDI/IDE disk controller wd0 NC wdc0 ST506/ESDI/IDE disk npx0 NC isa0 Floating-point unit Note that many of these fields could be made more informative; I tried to make my changes as unintrusive as possible. See the `mcd' driver for an example of one which actually does something with the `state' field. Notes: svn path=/head/; revision=3817
* Change ``on'' to ``at'' globally.Garrett Wollman1994-10-181-7/+7
| | | | Notes: svn path=/head/; revision=3700
* First bugfix: isa devices print as `at isa?' rather than `on isa0'.Garrett Wollman1994-10-171-1/+1
| | | | Notes: svn path=/head/; revision=3675
* lsdev(8), a user-land utility to query the device configuration databaseGarrett Wollman1994-10-175-0/+423
managed by kern_devconf.c. A useful feature is that the following script generates almost well-formed config-file lines for all ISA devices in the system: lsdev -t isa | awk '{ print "device $0" }' lsdev -t disk | awk '{ print "disk $0" }' Notes: svn path=/cvs2svn/branches/ours/; revision=3673