summaryrefslogtreecommitdiffstats
path: root/sys/pc98
Commit message (Collapse)AuthorAgeFilesLines
* Added $Id$.kato1999-04-301-0/+2
|
* s/static foo_devsw_installed = 0;/static int foo_devsw_installed;/.dt1999-04-287-14/+14
| | | | (Edited automatically)
* Sync with sys/i386/isa/clock.c revision 1.132.kato1999-04-283-3/+9
|
* Sync with sys/i386/i386/machdep.c revision 1.332.kato1999-04-282-218/+184
|
* Suser() simplification:phk1999-04-277-23/+23
| | | | | | | | | | | | | | | | | | | 1: s/suser/suser_xxx/ 2: Add new function: suser(struct proc *), prototyped in <sys/proc.h>. 3: s/suser_xxx(\([a-zA-Z0-9_]*\)->p_ucred, \&\1->p_acflag)/suser(\1)/ The remaining suser_xxx() calls will be scrutinized and dealt with later. There may be some unneeded #include <sys/cred.h>, but they are left as an exercise for Bruce. More changes to the suser() API will come along with the "jail" code.
* Remove obsolete interrupt labels.kato1999-04-252-86/+86
|
* Sync with sys/i386/i386/userconfig.c revision 1.137.kato1999-04-251-4/+4
|
* Sync with sys/i386/conf/options.i386 revision 1.112.kato1999-04-251-4/+3
|
* Sync with sys/i386/conf/Makefile.i386 revision 1.148.kato1999-04-251-2/+2
|
* De-quote.kato1999-04-252-40/+38
|
* Commented out adv_isa.c.kato1999-04-241-2/+2
|
* Sync with sys/i386/isa/isa_dma.c revision 1.2.kato1999-04-212-4/+2
|
* Sync with sys/i386/isa/clock.c revision 1.131.kato1999-04-213-48/+36
|
* Sync with sys/i386/i386/userconfig.c revision 1.136.kato1999-04-201-10/+12
|
* Sync with sys/i386/i386/machdep.c revision 1.330.kato1999-04-202-10/+2
|
* Sync with sys/i386/conf/Makefile.i386 revision 1.147.kato1999-04-201-2/+2
|
* Rectivate pnp0.kato1999-04-202-4/+4
|
* Fixed missing changes for new-bus (return value of the probe routine).kato1999-04-192-16/+16
| | | | Submitted by: Takahashi Yoshihiro <nyan@dd.catv.ne.jp>
* Sync with sys/isa/sio.c revision 1.226.kato1999-04-192-8/+44
|
* Sync with sys/i386/i386/userconfig.c revision 1.135.kato1999-04-191-2/+4
|
* Sync with follwing files:kato1999-04-1822-2126/+3918
| | | | | | | | | | | | | | | | | | | | | | Path Revision i386/conf/GENERIC 1.162 i386/conf/Makefile.i386 1.146 i386/conf/files.i386 1.236 i386/conf/options.i386 1.111 i386/i386/machdep.c 1.329 i386/i386/userconfig.c 1.134 i386/isa/fd.c 1.135 i386/isa/if_ed.c 1.151 i386/isa/isa_dam.c 1.1 i386/isa/npx.c 1.67 isa/sio.c 1.224 dev/syscons/syscons.c 1.300 i386/isa/wd.c 1.194 isa/vga_isa.c 1.5 isa/atkbd_isa.c 1.3 isa/syscons_isa.c 1.2 Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
* Shoot the LKM support in the old wd/wdc/atapi driver set in the head andpeter1999-04-134-299/+15
| | | | | | | | | | | | | | | | | perform a cleanup/unifdef sweep over it to tidy things up. The atapi code is permanently attached to the wd driver and is always probed. I will add an extra option bit in the flags to disable an atapi probe on either the master or slave if needed, if people want this. Remember, this driver is destined to die some time. It's possible that it will loose all atapi support down the track and only be used for dumb non-ATA disks and all ata/atapi devices will be handled by the new ata system. ATAPI, ATAPI_STATIC and CMD640 are no longer options, all are implicit. Previously discussed with: sos
* Sync with sys/i386/isa/isa.c revision 1.118.kato1999-04-121-7/+1
|
* Back out default debug kernel. The flags revert to historical behaviour.grog1999-04-111-5/+2
| | | | | | | | | | | | | | | Requested-by: ache bde dg Modify targets for debug kernels: when -g was specified, make will now build a debug kernel called kernel.debug, and create a stripped version called kernel at the same time. The two targets install and install.debug are otherwise unchanged. Requested-by: dillon Update man page accordingly.
* Sync with sys/i386/i386/userconfig.c revision 1.133.kato1999-04-101-2/+3
|
* Sync with sys/i386/conf/files.i386 revision 1.233.kato1999-04-101-1/+2
|
* 1. Modify config to issue different code for debugging.grog1999-04-071-13/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 2. Config complains if you use -g: Debugging is enabled by default, there is no ned to specify the -g option 3. Config warns you if you don't use -s: Building kernel with full debugging symbols. Do "config -s BSD" for historic partial symbolic support. To install the debugging kernel, do make install.debug (BSD was the name of the config file I used; I print out the same name). 4. Modify Makefile.i386, Makefile.alpha, Makefile.pc98 and config to work if a kernel name other than 'kernel' is specified. This is not absolutely necessary, but useful, and it was relatively easy. I now have a kernel called /crapshit :-) 5. Modify Makefile.i386, Makefile.alpha, Makefile.pc98 "clean" target to remove both the debug and normal kernel. 6. Modify all to install the stripped kernel by default and the debug kernel if you enter "make install.debug". 7. Update version number of Makefiles and config.
* Use PHOLD/PRELE() instead of P_PHSYIO.peter1999-04-062-6/+6
|
* Fix for console mouse.kato1999-04-041-1/+5
| | | | Submitted by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp>
* Restore support for executing BSD/OS binaries on the i386 by passingjdp1999-04-032-4/+6
| | | | | | | | the address of the ps_strings structure to the process via %ebx. For other kinds of binaries, %ebx is still zeroed as before. Submitted by: Thomas Stephens <tas@stephens.org> Reviewed by: jdp
* Sync with sys/i386/isa/wd.c revision 1.191.kato1999-04-031-3/+1
|
* Sync with sys/i386/isa/sio.c revision 1.234.kato1999-04-032-4/+4
|
* o sys/i386/include/soundcard.hkato1999-04-021-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Sound Card ID for the nss(NEC PC-9801-86 Sound System) driver. Old name of this driver was pcm driver in FreeBSD 2.2.x. Fix lack of the length of the name member of the synth_info structure. (attach_mpu401 in sys/i386/isa/sound/mpu401.c requires 33 chars.) o sys/i386/isa/sound/dev_table.h Add the DMAbuf flags definition DMA_DISABLE. Add the nss driver entry. o sys/i386/isa/sound/dmabuf.c Add the DMA_DISABLE flag check in DMAbuf_outputintr and DMAbuf_inputintr to disable DMA control in FIFO only use (nss driver required). o sys/i386/isa/sound/local.h Add the nss driver entry. o sys/i386/isa/sound/mpu401.c Replace inb function in probe_mpu401 to mpu401_status macro. Wrap macro argument for above replace. Add I/O port maping macro for NEC PC-98x1 arch. Add delay in NEC PC-98x1 arch. o sys/i386/isa/sound/pcm86.c Change driver name to avoid name space conflict to new pcm driver. Fix NEC PC-9801-86 driver to work on RELENG_3 branch or latter. o sys/i386/isa/sound/sound_calls.h Fix the mpuintr definition. Add the nss driver entry. attach_nss, probe_nss, nssintr o sys/i386/isa/sound/soundcard.c Fix lack of the mpuintr registration. Add the nss driver entry. o sys/pc98/conf/files.pc98 Add the nss driver entry. Reviewed by: kato Submitted by: Akio Morita <amorita@meadow.scphys.kyoto-u.ac.jp>
* Sync with sys/i386/isa/sio.c revision up to 1.233.kato1999-04-012-4/+44
|
* Sync with sys/i386/isa/npx.c revision 1.66.kato1999-04-011-1/+3
|
* Sync with sys/i386/conf/files.i386 revision up to 1.232.kato1999-04-011-6/+4
|
* Delete the aic driver.kato1999-04-012-6/+2
|
* The DEVFS case was screwed by my last commit here..sos1999-03-311-4/+4
|
* Sync with sys/i386/isa/wd.c revision 1.190.kato1999-03-251-2/+4
|
* Sync with sys/i386/isa/sio.c revision up to 1.231.kato1999-03-252-2/+6
|
* Sync with sys/i386/conf/majors.i386 revision 1.69.kato1999-03-251-2/+3
|
* Sync with sys/i386/isa/if_ed.c revision 1.150.kato1999-03-191-14/+59
|
* Sync with sys/i386/conf/options.i386 revision 1.110.kato1999-03-171-1/+6
|
* Sync with sys/i386/conf/majors.i386 revision up to 1.68.kato1999-03-171-7/+16
|
* Sync with sys/i386/conf/files.i386 revision 1.229.kato1999-03-171-2/+2
|
* Sync with sys/i386/conf/devices.i386 revision 1.16.kato1999-03-171-1/+2
|
* Sync with sys/i386/conf/GENERIC revision 1.155.kato1999-03-172-4/+4
|
* Rewert the atapi CDROM driver's name to wcd.sos1999-03-161-36/+36
| | | | | This is to avoid confusion with the new system. Also provide real entires in MAKEDEV for the new system.
* Sync with sys/i386/conf/Makefile.i386 revision 1.141.kato1999-03-131-2/+2
|
* Keyboard driver update.kato1999-03-104-222/+237
| | | | Submitted by: Kazutaka YOKOTA <yokota@FreeBSD.org>
OpenPOWER on IntegriCloud