summaryrefslogtreecommitdiffstats
path: root/sys/pc98
Commit message (Collapse)AuthorAgeFilesLines
* Merge from sys/isa/sio.c rev 1.279.kato1999-12-102-24/+36
|
* Remove ze and zp drivers.kato1999-12-105-26/+0
|
* Merge from sys/dev/syscons/syscons.c rev 1.329.kato1999-12-101-0/+10
|
* Remove the B_BAD buffer flag, it is no longer used.phk1999-12-101-10/+1
|
* Move source files common to all platforms from <arch>/conf/files.<arch>archie1999-12-091-15/+0
| | | | | to conf/files. If/when these files are optimized for each platform, they can be moved back.
* arc4random.c now in conf/files (left out of last commit.. oops!)dan1999-12-091-1/+0
|
* Backed out previous commit because it contains wrong changes.kato1999-12-091-19/+11
| | | | Pointed out by: nyan
* Sync with sys/dev/fb/vga.c rev 1.5.kato1999-12-092-10/+8
| | | | Submitted by: yokota
* Sync with sys/i386/isa/wd.c rev 1.216.kato1999-12-091-11/+19
|
* Merge from sys/i386/conf/options.i386 rev 1.128.kato1999-12-091-0/+3
|
* Merge from sys/i386/conf/files.i386 rev 1.284.kato1999-12-091-0/+32
|
* Remove BAD144 support, it has already been disabled for some time.phk1999-12-083-200/+4
|
* Revamp the devstat priority system. All disks now have the same priority.ken1999-12-082-3/+3
| | | | | | | | | | | | | | | | | | The same goes for CD drivers and tape drivers. In systems with mixed IDE and SCSI, devices in the same priority class will be sorted in attach order. Also, the 'CCD' priority is now the 'ARRAY' priority, and a number of drivers have been modified to use that priority. This includes the necessary changes to all drivers, except the ATA drivers. Soren will modify those separately. This does not include and does not require any change in the devstat version number, since no known userland applications use the priority enumerations. Reviewed by: msmith, sos, phk, jlemon, mjacob, bde
* Merge from sys/isa/fd.c rev 1.170.kato1999-12-072-12/+46
|
* Merge from sys/isa/sio.c rev 1.277 & 1.278.kato1999-12-072-44/+58
|
* Merge from sys/i386/conf/files.i386 rev 1.283.kato1999-12-071-1/+0
|
* Merge from sys/dev/syscons/syscons.c rev 1.328.kato1999-12-071-1/+2
|
* Merge from sys/i386/i386/userconfig.c rev 1.162 & 1.163.kato1999-12-071-6/+1
|
* Merge pnp change from i386/conf/GENERIC (rev 1.211)peter1999-12-062-2/+0
|
* Remove DSO_BAD144 from wd driver(s) so people with bad144'ed disks getphk1999-12-061-1/+1
| | | | a bit of warning.
* User ldt sharing.luoqi1999-12-062-20/+4
|
* Remove joystick references from pc98 version of isa_compat.h too.wpaul1999-12-061-5/+0
|
* Supported i8251 (internal COM1) FIFO mode.nyan1999-12-062-112/+428
| | | | Submitted by: tanimura and nyan
* Update to reflect removed of al, ax, dm, pn and mx drivers and additionwpaul1999-12-052-10/+2
| | | | of dc driver.
* Sync with sys/i386/i386/machdep.c revision up to 1.381.nyan1999-12-042-6/+6
|
* pc98/pc98/atapi.cnyan1999-12-032-1/+989
| | | | | | | | | | | Copied from i386/isa/atapi.c. Fixed to support slave devices. Ignore the device that has strange model strings. i386/isa/atapi.c Removed pc98 codes. Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata)
* Sync with sys/i386/conf/GENERIC revision 1.208.nyan1999-12-032-2/+0
|
* Remove the 'ivars' arguement to device_add_child() andmdodd1999-12-032-2/+4
| | | | | | | | | | | | | | | | device_add_child_ordered(). 'ivars' may now be set using the device_set_ivars() function. This makes it easier for us to change how arbitrary data structures are associated with a device_t. Eventually we won't be modifying device_t to add additional pointers for ivars, softc data etc. Despite my best efforts I've probably forgotten something so let me know if this breaks anything. I've been running with this change for months and its been quite involved actually isolating all the changes from the rest of the local changes in my tree. Reviewed by: peter, dfr
* Sync with sys/i386/conf/GENERIC revision up to 1.207.nyan1999-12-022-2/+10
|
* Sync with sys/isa/sio.c revision 1.276.nyan1999-12-012-32/+8
|
* - Fixed to support RSB-384/2000/3000.nyan1999-11-292-84/+70
| | | | - Fixed warnings.
* Sync with sys/i386/conf/files.i386 revision 1.282.nyan1999-11-291-0/+1
|
* Sync with sys/dev/syscons/syscons.c revision 1.327.nyan1999-11-281-4/+4
|
* Sync with sys/i386/conf/GENERIC revision 1.205.nyan1999-11-282-6/+8
|
* Sync with sys/i386/conf/GENERIC revision 1.202.nyan1999-11-272-2/+4
|
* Sync with sys/i386/conf/files.i386 revision 1.281.nyan1999-11-261-1/+8
|
* Fixed to support IBM-PC HDD.nyan1999-11-251-2/+2
| | | | | | | | - Use 'or' operation to change b_flags. - SCSI HDD device is 'da', not 'sd'. Submitted by: kura@tim.hi-ho.ne.jp (Tomohiko Kurahashi) and chi@bd.mbn.or.jp (Chiharu Shibata)
* Sync with sys/i386/conf/Makefile.i386 revision 1.165.nyan1999-11-251-22/+14
|
* Sync with sys/i386/i386/machdep.c revision up to 1.378.nyan1999-11-252-18/+38
|
* Change the prototype of the strto* routines to make the secondarchie1999-11-243-7/+7
| | | | | | | | | | | parameter a char ** instead of a const char **. This make these kernel routines consistent with the corresponding libc userland routines. Which is actually 'correct' is debatable, but consistency and following the spec was deemed more important in this case. Reviewed by (in concept): phk, bde
* s/p_cred->pc_ucred/p_ucred/gphk1999-11-212-2/+2
|
* Sync with sys/isa/sio.c revision up to 1.275.nyan1999-11-182-220/+320
|
* Sync with sys/isa/fd.c revision 1.168.nyan1999-11-182-40/+2
|
* Sync with sys/i386/conf/Makefile.i386 revision up to 1.163.nyan1999-11-181-5/+7
|
* Sync with sys/i386/isa/pcaudio.c revision 1.57.nyan1999-11-161-11/+6
|
* Fixed the size of array.nyan1999-11-132-2/+2
|
* Fixed missing changes from sys/i386/conf/GENERIC.nyan1999-11-132-34/+52
|
* Sync with sys/i386/i386/machdep.c revision 1.375.nyan1999-11-122-4/+4
|
* Sync with sys/isa/fd.c revision 1.167.nyan1999-11-112-98/+258
|
* - Commented out ed driver.nyan1999-11-092-20/+24
| | | | - Added sis driver.
OpenPOWER on IntegriCloud