History log of /src/sys/arch/vax/conf/majors.vax |
Revision | | Date | Author | Comments |
1.30 |
| 04-Apr-2020 |
jdolecek | mark nsmb major obsolete
|
1.29 |
| 28-Jan-2019 |
dholland | Systematize handling of removed drivers.
- Every driver that was removed and whose number hasn't already been reused is now listed with a commented-out "obsolete" line. - The format of these has been systematized. Future format changes can probably be safely done with a script. - This does not include a few cases of assignments that only lasted a couple days, or stuff from before major reorgs. Some of these may be included nonetheless, because there was a lot of ground to cover and therefore not a lot of time to dig into history in detail.
Note that the obsolete listings do not mean the major numbers can never be reused; that's up to portmasters and/or core. It does mean that they won't be reused by accident, however, which in some cases (depending on the driver, how widely used it was, its family of device nodes, their default permissions, etc.) can be quite dangerous.
Note that some of the things now explicitly listed as obsolete are really ancient history. My scan went back as far as when the majors files were added. (But not before that.)
|
1.28 |
| 29-Mar-2018 |
ragge | branches: 1.28.2; Use same major for rx floppies for both b and c devices. Works around a bug in the mscp disk driver, and solves PR port-vax/26138.
|
1.27 |
| 22-Jun-2017 |
flxd | branches: 1.27.4; USB for vax (similar to pmax; no/negligible impact on legacy): * Add USB device files/majors. * Make kernel configs with USB work. * Provide a USB-enabled kernel config.
|
1.26 |
| 05-Jul-2015 |
matt | branches: 1.26.10; Configury support for QVSS (from Charles Dickman)
|
1.25 |
| 19-Dec-2014 |
jklos | Add audio support for VAXstation VLC, 60 and 90 machines. Originally rom Blaz Antonic and ported from OpenBSD by Björn Johannesso. Tested on VLC and 4000/60.
|
1.24 |
| 22-Jun-2012 |
abs | branches: 1.24.2; 1.24.16; - Add racd* devices for MSCP based CD-ROM drives (RRD40s), as opposed to mixing them in with the ra* disks, modelled loosely on how MSCP rx* floppies are handled - racd* defaults to the same single iso9660 partition as cd* - Cleanup config option handling slightly so any combination of ra*, rx* (and now raccd*) can be defined without build errors. - Avoid ugly printf when disks have all zero disklabel magic number
|
1.23 |
| 30-Jun-2011 |
wiz | branches: 1.23.2; 1.23.8; dependant -> dependent
|
1.22 |
| 12-Nov-2008 |
ad | Remove LKMs and switch to the module framework, pass 1.
Proposed on tech-kern@.
|
1.21 |
| 31-Dec-2007 |
ad | branches: 1.21.6; 1.21.10; 1.21.16; 1.21.18; Remove systrace. Ok core@.
|
1.20 |
| 24-Nov-2006 |
wiz | branches: 1.20.28; 1.20.34; 1.20.42; s/independant/independent/, from Zafer.
|
1.19 |
| 11-Dec-2005 |
christos | branches: 1.19.20; 1.19.22; merge ktrace-lwp.
|
1.18 |
| 17-Sep-2005 |
yamt | make VMSWAP optional again.
|
1.17 |
| 31-Jul-2005 |
yamt | revert "defflag VMSWAP" changes for now. there seems to be far more people who don't want to edit their kernel config files than i thought.
|
1.16 |
| 30-Jul-2005 |
yamt | defflag VMSWAP.
|
1.15 |
| 10-May-2005 |
jdolecek | branches: 1.15.2; assign major for nsmb(4)
|
1.14 |
| 10-Dec-2003 |
jmc | Change reference at bottom from sys/dev/majors to sys/conf/majors to match reality
|
1.13 |
| 24-Oct-2003 |
jdolecek | add major for 'ses' for archs which have the other scsi devices
|
1.12 |
| 22-Oct-2003 |
jdolecek | add wsfont major to archs which have the other wscons devices
|
1.11 |
| 10-Oct-2003 |
jdolecek | reassing majors for crypto and pf to use the newly defined MI major range
|
1.10 |
| 10-Oct-2003 |
jdolecek | update the comment - the space for machine-dependant majors is reduced to 0-143 follows discussion on tech-kern
|
1.9 |
| 05-Oct-2003 |
jdolecek | Add some framework for MI assignment of device majors - add sys/dev/majors which is automatically included during kernel config, and add comments to individual machine-dependant majors.* files to assign new MI majors in MI file.
Range 0-191 is reserved for machine-specific assignments, range 192+ are MI assignments.
Follows recent discussion on tech-kern@
|
1.8 |
| 22-Aug-2003 |
itojun | create /dev/crypto
|
1.7 |
| 27-Jul-2003 |
itojun | reserve cdev major # for PF. ok'ed by technical-exec
|
1.6 |
| 25-Apr-2003 |
ragge | branches: 1.6.2; Add ksyms device major.
|
1.5 |
| 23-Mar-2003 |
ragge | Add rf (RX01/02 floppy device driver)
|
1.4 |
| 23-Jan-2003 |
gehenna | Add the block-device-only devices.
Reported by ragge.
|
1.3 |
| 04-Oct-2002 |
elric | branches: 1.3.2; assign majors for raw and cooked cgd's.
|
1.2 |
| 06-Sep-2002 |
gehenna | branches: 1.2.2; Merge the gehenna-devsw branch into the trunk.
This merge changes the device switch tables from static array to dynamically generated by config(8).
- All device switches is defined as a constant structure in device drivers.
- The new grammer ``device-major'' is introduced to ``files''.
device-major <prefix> char <num> [block <num>] [<rules>]
- All device major numbers must be listed up in port dependent majors.<arch> by using this grammer.
- Added the new naming convention. The name of the device switch must be <prefix>_[bc]devsw for auto-generation of device switch tables.
- The backward compatibility of loading block/character device switch by LKM framework is broken. This is necessary to convert from block/character device major to device name in runtime and vice versa.
- The restriction to assign device major by LKM is completely removed. We don't need to reserve LKM entries for dynamic loading of device switch.
- In compile time, device major numbers list is packed into the kernel and the LKM framework will refer it to assign device major number dynamically.
|
1.1 |
| 16-May-2002 |
gehenna | branches: 1.1.2; file majors.vax was initially added on branch gehenna-devsw.
|
1.1.2.3 |
| 15-Jul-2002 |
gehenna | catch up with -current.
|
1.1.2.2 |
| 30-May-2002 |
gehenna | Add $NetBSD$
|
1.1.2.1 |
| 16-May-2002 |
gehenna | Add the list of block/character majors.
|
1.2.2.3 |
| 18-Oct-2002 |
nathanw | Catch up to -current.
|
1.2.2.2 |
| 17-Sep-2002 |
nathanw | Catch up to -current.
|
1.2.2.1 |
| 06-Sep-2002 |
nathanw | file majors.vax was added on branch nathanw_sa on 2002-09-17 21:18:26 +0000
|
1.3.2.2 |
| 10-Oct-2002 |
jdolecek | sync kqueue with -current; this includes merge of gehenna-devsw branch, merge of i386 MP branch, and part of autoconf rototil work
|
1.3.2.1 |
| 04-Oct-2002 |
jdolecek | file majors.vax was added on branch kqueue on 2002-10-10 18:37:15 +0000
|
1.6.2.4 |
| 10-Nov-2005 |
skrll | Sync with HEAD. Here we go again...
|
1.6.2.3 |
| 21-Sep-2004 |
skrll | Fix the sync with head I botched.
|
1.6.2.2 |
| 18-Sep-2004 |
skrll | Sync with HEAD.
|
1.6.2.1 |
| 03-Aug-2004 |
skrll | Sync with HEAD
|
1.15.2.3 |
| 21-Jan-2008 |
yamt | sync with head
|
1.15.2.2 |
| 30-Dec-2006 |
yamt | sync with head.
|
1.15.2.1 |
| 21-Jun-2006 |
yamt | sync with head.
|
1.19.22.1 |
| 10-Dec-2006 |
yamt | sync with head.
|
1.19.20.1 |
| 12-Jan-2007 |
ad | Sync with head.
|
1.20.42.1 |
| 02-Jan-2008 |
bouyer | Sync with HEAD
|
1.20.34.1 |
| 18-Feb-2008 |
mjf | Sync with HEAD.
|
1.20.28.1 |
| 09-Jan-2008 |
matt | sync with HEAD
|
1.21.18.1 |
| 19-Jan-2009 |
skrll | Sync with HEAD.
|
1.21.16.1 |
| 13-Dec-2008 |
haad | Update haad-dm branch to haad-dm-base2.
|
1.21.10.1 |
| 04-May-2009 |
yamt | sync with head.
|
1.21.6.1 |
| 17-Jan-2009 |
mjf | Sync with HEAD.
|
1.23.8.1 |
| 04-Jul-2012 |
jdc | Pull up revisions: src/etc/etc.vax/MAKEDEV.conf revision 1.14 src/sys/arch/vax/conf/GENERIC revision 1.182 src/sys/arch/vax/conf/INSTALL revision 1.60 src/sys/arch/vax/conf/VAX780 revision 1.9 src/sys/arch/vax/conf/majors.vax revision 1.24 src/sys/arch/vax/vax/disksubr.c revision 1.53 src/sys/dev/DEVNAMES revision 1.275 src/sys/dev/mscp/files.mscp revision 1.8 src/sys/dev/mscp/mscp_disk.c revision 1.72 src/sys/dev/mscp/mscp_subr.c revision 1.42 src/distrib/vax/ramdisk/Makefile revision 1.29 (requested by abs in ticket #385).
- Add racd* devices for MSCP based CD-ROM drives (RRD40s), as opposed to mixing them in with the ra* disks, modelled loosely on how MSCP rx* floppies are handled - racd* defaults to the same single iso9660 partition as cd* - Cleanup config option handling slightly so any combination of ra*, rx* (and now raccd*) can be defined without build errors. - Avoid ugly printf when disks have all zero disklabel magic number
Include racd0 and racd1 on ramdisk
|
1.23.2.1 |
| 30-Oct-2012 |
yamt | sync with head
|
1.24.16.3 |
| 28-Aug-2017 |
skrll | Sync with HEAD
|
1.24.16.2 |
| 22-Sep-2015 |
skrll | Sync with HEAD
|
1.24.16.1 |
| 06-Apr-2015 |
skrll | Sync with HEAD
|
1.24.2.1 |
| 03-Dec-2017 |
jdolecek | update from HEAD
|
1.26.10.1 |
| 05-Jul-2017 |
snj | Pull up following revision(s) (requested by flxd in ticket #95): etc/etc.vax/MAKEDEV.conf: revision 1.19 etc/etc.vax/Makefile.inc: revision 1.25 sys/arch/vax/conf/GENERIC_USB: revision 1.1 sys/arch/vax/conf/files.vax: revision 1.123 sys/arch/vax/conf/majors.vax: revision 1.27 USB for vax (similar to pmax; no/negligible impact on legacy): * Add USB device files/majors. * Make kernel configs with USB work. * Provide a USB-enabled kernel config. -- Add GENERIC_USB to vax kernel sets, but not to sysinst (yet), as bootloader cannot handle kernels that large (yet).
|
1.27.4.1 |
| 30-Mar-2018 |
pgoyette | Resolve conflicts between branch and HEAD
|
1.28.2.2 |
| 08-Apr-2020 |
martin | Merge changes from current as of 20200406
|
1.28.2.1 |
| 10-Jun-2019 |
christos | Sync with HEAD
|