summaryrefslogtreecommitdiffstats
path: root/etc/MAKEDEV
Commit message (Collapse)AuthorAgeFilesLines
* Make /dev/lkm as a part of `std'. Delete references to ancient `com' driver.wollman1994-09-231-12/+2
|
* Added wd2 and wd3 to the standard set. They are in GENERICAH, they canphk1994-09-071-11/+4
| | | | | | | be installed on, so they should be in /dev as well. Removed the smoking remains of dcf*. I didn't realize that it had made it into MAKEDEV. Gone from cdevsw long time ago, gone from /dev now.
* Make it possible to run lptcontrol on a printer port which does notcsgr1994-09-031-12/+5
| | | | | | | | | | | | | | | | | actually have a printer connected or online: - MAKEDEV: remove all signs of lpa add lpctl? devices (minor # = unit + 128) - usr.sbin/Makefile add lptcontrol - sys/i386/isa/lpt.c implement the LP_BYPASS flag: when a unit is opened with this flag set, the printer is not primed, and no check is made to see that the printer is online. This can only be used to pass ioctls. (giving us /dev/lpctl?) - lptcontrol.c use /dev/lpctl? (LP_BYPASS) -f flag removed, -u flag added - lptcontrol.8 document changes in lptcontrol rewrite using mandoc macros Submitted by: Geoff.
* Fixes from Bruce Evans:jkh1994-06-171-5/+21
| | | | | o insecure and inconsistent permissions for tape devices. o didn't make the DOSpartition wd devices.
* From Ache:ache1994-05-301-9/+15
| | | | Add proper devices for new sio initial/locking mechanism
* Fix all the sound devices to NOT have the absolute path /dev, the makes forrgrimes1994-05-211-37/+37
| | | | missing device files in releases!!
* Add 4 VTY's back to the list of things to create by default (the codrvjkh1994-05-191-4/+3
| | | | comments were obsolete), also create a PS/2 mouse entry.
* Make dialout devices owned by uucp.dialer with 660 modeache1994-05-101-3/+3
|
* device support for pcaudio addedsos1994-04-211-3/+12
|
* Fix tty? entry in the same way like cua entryache1994-04-031-4/+16
| | | | Add error diagnotic about unknown device name
* Fix error in making cua entries for two multiportsache1994-04-031-5/+13
| | | | (> 10 devices)
* Add mitsumi cdrom /dev entries.rgrimes1994-03-071-6/+8
|
* Remove sio entries per Rod suggestionache1994-02-191-6/+5
|
* Sorry, expr error in last commit.ache1994-02-191-3/+3
|
* We lost ttyd for dialin lines, now restore itache1994-02-191-10/+20
|
* Add devices for QIC 40/80 supportalm1994-02-071-2/+26
|
* Added creation of a symlink for ttyv0->vga when making the 'pc0' target.dg1994-01-261-1/+2
|
* Deprecate "/dev/vga". Use /dev/ttyv0 always. Note that the terminal typedg1994-01-241-6/+3
| | | | | is still 'pc3' in /etc/ttys, and should be changed if we decide to default to syscons.
* Add callout device for bidirectional portache1994-01-101-4/+5
|
* Insert tab before comment so brain dead shell does not screw uprgrimes1993-12-241-2/+2
| | | | the arguments to mknod.
* Comment out porogrammer-readable fd name set,ache1993-12-211-35/+35
| | | | not needed in standard version, only for XENIX lovers.
* User-readable fd name set added:ache1993-12-181-2/+62
| | | | | [r]fd[n].{360,720,800,820,1200,1440,1480,1720} Programmer-readable fd name set added in XENIX style.
* No more partition bits in floppy minor.ache1993-12-161-3/+26
| | | | | | | | | | Now minor looks like UU DDDDDD, UU - unit, DDDDDD - density. If density == 0, CMOS-detect format assumed. For old users/pgms use fake partitions now, i.e. ln fd0 fd0[a-h] No new floppy names added (expect fd? and rfd?), because don't have agreement yet, so make devices only for CMOS-detected formats.
* From: Sergey Ryzhkov, Serge Vakulenkoalm1993-12-141-8/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | E-mail: <sir@kiae.su>, <vak@zebub.msk.su> added new /dev/wt entries for wt.c version 1.3 8) Some controllers support only 1024 block length. Setting WT_BSIZE bit in device minor number turns on this mode. Minor number structure: 0bfffuuu Fields: uuu - Unit number. It's possible to install up to three tape controllers on the same machine, using DRQs 1..3. Hence, unit number can lie in range 0..2. fff - Tape format number: 0 - /dev/rwt0 - default density (auto select) 1 - /dev/rwt0a - QIC 11 (obsolete) 2 - /dev/rwt0b - QIC 24 (60 megabytes) 3 - /dev/rwt0c - QIC 120 (120 megabytes) 4 - /dev/rwt0d - QIC 150 (150 megabytes) 5 - /dev/rwt0e - QIC 300 (300 megabytes?) 6 - /dev/rwt0f - QIC 600 (600 megabytes?) b - Long block size flag. With this bit set, the driver will perform all i/o operations with the controller using 1024-byte blocks, instead of 512 ones. Some controllers need it (CMS for example). If you Wangtek controller does not stream well, you can try to use /dev/rWt0 device instead of /dev/rwt0 (uncomment needed lines in /dev/MAKEDEV to create it). Block interface (writing blocks less than 2048 bytes) is not functioning pwoperly. Use raw interface instead. Thanks to all who helped to test it on the following hardware: Controller Drive Volume Interface Thanks to --------------------------------------------------------------------------- Archive SC-499 Archive 2150L 150 Meg QIC-02 KIAE CMS? ? 150 Meg QIC-02 KIAE Everex EV 831/833 ? ? QIC-36 Joergen Haegg Wangtek ASSY Wangtek 60 Meg QIC-02 Ken Whedbee Tecmar QT150i? Wangtek 5150EQ ? QIC-02? Marko Teiste ? Wangtek 5099EK 60 Meg QIC-36 Robert Shien Archive SC400S ? 60 Meg ? Warren Toomey
* Missing part of Julians new scsi code, add new driver uk and revise thergrimes1993-11-221-39/+37
| | | | entries for st.
* Added comment in the description of `com' devices that they are usuallywollman1993-11-061-2/+6
| | | | | not what users want unless they have re-configured their kernels. Hopefully some people will actually read this.
* Add zero and io to the rm -f line for std devices so they get removed beforergrimes1993-10-281-2/+2
| | | | an attempt is made to mknod them.
* Moved sound drivers from major 21 to major 30.jkh1993-10-231-11/+12
|
* New snd*) target for making driver entries for new sound driver.jkh1993-10-231-1/+44
|
* Fixe a spelling error and added both the mse (logitech and ATI inport) andnate1993-10-191-3/+32
| | | | | | the psm (PS/2 bus) mouse support (The psm driver will have to come later)
* Added /dev/zero and /dev/io, they have been around for a while, time torgrimes1993-10-061-1/+3
| | | | have some /dev entries.
* Support for new wt driver. Removed old references to as* disk types sincergrimes1993-09-301-10/+16
| | | | they are long gone.
* >From: kuku@acds.physik.rwth-aachen.de (Christoph Kukulies)rgrimes1993-09-141-2/+2
| | | | | Comment was wrong about what entries get made for vtyNN, it is 0-b, not 00-12.
* Changed misleading comment about vty's - now clearly stated to work withjkh1993-09-061-27/+6
| | | | syscons, pcvt, codrv, ...
* Replaced all references to comxx with ttyxx, since that is what all thergrimes1993-09-051-12/+11
| | | | | | | | other tools really want. Targets sio*) and com*) now create entry named ttyxx, default setup with a sh MAKEDEV all is to use the sio major numbers, com is all but depreicated now.
* Updated st*) entry from Julian.rgrimes1993-08-301-39/+31
|
* Removed as0 and as1 from the all case since these are obsolete (use sd0...)rgrimes1993-08-021-2/+2
|
* Removed vty04 from sh MAKEDEV all since that casued root login problemsrgrimes1993-07-301-2/+3
| | | | on the console if you do not run codrv.
* Fixed some errors in disktab (from NetBSD), floppy 5 corrected, and CP3100.rgrimes1993-07-191-28/+251
| | | | | Fixed some errors in disktab (from NetBSD), floppy 5 corrected, and CP3100. MAKEDEV script from 0.1.2.4 system.
* Initial import of 386BSD 0.1 othersrc/etcrgrimes1993-06-201-0/+160
OpenPOWER on IntegriCloud