summaryrefslogtreecommitdiffstats
path: root/sys/conf
Commit message (Collapse)AuthorAgeFilesLines
* Mention that the Zip driver (vpo) requires SCSI disk support, and worksmsmith1997-10-151-1/+3
| | | | | best with EPP 1.9 mode selected. Submitted by: Gianmarco Giovannelli <gmarco@giovannelli.it>
* Synchronize with sys/i386/conf/Makefile.i386 revision 1.268.kato1997-10-121-2/+2
|
* Synchronize with sys/i386/conf/options.i386 revision 1.61.kato1997-10-121-2/+2
|
* sppp(4) is now also a consumer of the kernel MD5 code.joerg1997-10-111-0/+1
|
* Convert the VM86 option from a global option to an option only dependedpeter1997-10-103-6/+6
| | | | | on by the files that use it. Changing the VM86 option now only causes a recompile of a dozen files or so rather than the entire kernel.
* Added two Cyrix 6x86/6x86MX options.kato1997-10-061-1/+10
| | | | | | - CPU_CYRIX_NO_LOCK enables weak locking. If this option is not set and FAILESAFE is defined, NO_LOCK bit of CCR1 is cleared. - CPU_WT_ALLOC enables write-through allocation.
* Commented out entries of Luigi's sound driver. The name `pcm' iskato1997-09-241-6/+6
| | | | | | conflict with sys/isa/sound/pcm86.c. Pointed out by: Mitsuru IWASAKI <iwasaki@pc.jaring.my>
* Increment RELDATE so that it is possible to distinguish between thejdp1997-09-241-2/+2
| | | | incompatible old and new forms of mount(2).
* Fix merge spamjkh1997-09-231-4/+2
| | | | Spotted by: Alex Nash
* Reserve entry for CAN16-2 CAN-PC Interfacejkh1997-09-231-1/+2
| | | | Submitted by: Christoph Kukulies <kuku@gilberto.physik.RWTH-Aachen.DE>
* Be more explicit about one of IPFIREWALL's features.jkh1997-09-231-1/+11
|
* Make MFS a supported option, finally.joerg1997-09-221-1/+2
|
* Synchronize with sys/i386/conf/files.i386 revision 1.177.kato1997-09-221-13/+2
|
* Move the rules for aicasm to the MI conf file.gibbs1997-09-211-14/+2
|
* Move the rules for aicasm to the MI conf file.gibbs1997-09-211-0/+16
| | | | | Add kern/subr_autoconf.c as a standard file as it contains the bulk of the code for performing interrupt driven configuration.
* Addition of support of the slightly rogue Promise IDE interface(Dyson), supportdyson1997-09-201-2/+17
| | | | | | | | | | | of multiple PCI IDE controllers(Dyson), and some updates and cleanups from John Hood, who originally made our IDE DMA stuff work :-). I have run tests with 7 IDE drives connected to my system, all in DMA mode, with no errors. Modulo any bugs, this stuff makes IDE look really good (within it's limitations.) Submitted by: John Hood <cgull@smoke.marlboro.vt.us>
* Synchronize with sys/i386/conf/options.i386 and sys/i386/isa/sio.ckato1997-09-201-1/+2
| | | | revisions 1.60 and 1.182, respectively.
* teach sio how to attach to isa PnP cards. This is mainly for use withjmg1997-09-192-2/+8
| | | | | | | | | | | | | | | | internal modems. Currently detects a USR modem, and a couple Supra modems... vendor id's for sio capabile cards welcomed... document new option EXTRA_SIO that will increase sio's internal data structures to support X more serial ports... these are used by the PnP part of sio for attaching... If you don't have it specified, it will default to 2... This is defaulted to 0 if you don't have PnP compiled into your kernel... also document that if you set the PnP flags (pnp x flags y) to 0x1 that the modem will be refused to be recognized by the sio driver... this is for people that want the traditional isa driver to probe and attach the modem... (for keeping legacy sio numbering)
* Synchronize with sys/i386/conf/options.i386 and sys/i386/isa/fd.ckato1997-09-171-1/+4
| | | | revisions 1.59 and 1.101, respectively.
* Make TCPDEBUG a new-style option.joerg1997-09-161-1/+2
|
* Make FDC_DEBUG a supported option.joerg1997-09-162-2/+12
| | | | | | | Hide the bogus FDC ``chip type'' display behind a (mostly) undocumented option, since people started to trust the bogus claim. Once we're going to handle 2.88 MB controllers, we have to redo the chip detection, by now just leave it hidden.
* Synchronize with sys/i386/conf/files.i386 revision 1.176.kato1997-09-151-1/+6
|
* docment the new sound drivers in LINT and add the necessary files tojmg1997-09-142-2/+26
| | | | | | | | | files.i386. We aren't sure if this new code and the old sound code will co-exist in a kernel, so the device pcm0 line is left commented out in LINT. Submitted-by: Luigi Rizzo
* Synchronize with sys/i386/conf/files.i386 revision 1.175.kato1997-09-101-2/+3
|
* Allow a compile-time override of the ipfw deny rule. For a 'firewall'peter1997-09-102-2/+11
| | | | | | | | | | you don't want this (and the documentation explains why), but if you use ipfw as an as-needed casual filter as needed which normally runs as 'allow all' then having the kernel and /sbin/ipfw get out of sync is a *MAJOR* pain in the behind. PR: 4141 Submitted by: Heikki Suonsivu <hsu@mail.clinet.fi>
* add pnp device entries...jmg1997-09-092-2/+8
|
* Removed vestiges of config-time "argument processing" configuration.bde1997-09-071-2/+1
|
* Removed more vestiges of config-time swap configuration.bde1997-09-071-5/+1
|
* Synchronize with sys/i386/conf/options.1386 revision 1.58.kato1997-09-051-1/+2
|
* Add a new compile option SC_HISTORY_SIZE for syscons.yokota1997-09-042-2/+4
|
* Upgrade of EIDE DMA support, Johns comments:sos1997-09-041-4/+5
| | | | | | | | | | | | * lots of fixes to error handling-- mostly works now * improve DMA timing config for Triton chipsets-- PIIX4 and UDMA drive still untested * generally improve DMA config in many ways-- mostly cleanup * clean up boot-time messages * rewrite PRD generation algorithm * first wd timeout is now longer, to handle drive spinup Submitted by: John Hood <cgull@smoke.marlboro.vt.us>
* Synchronize with sys/i386/conf/files.i386 revision 1.174.kato1997-09-031-6/+6
|
* Make the aic7xxx sequencer assembler compile in the kernel's objectgibbs1997-09-031-6/+6
| | | | | | | directory. Rename (via repository copy) some files so that the potential for future conflicts is minimized. PR: conf/4363
* Synchronize with sys/i386/conf/options.i386 revision 1.57.kato1997-09-011-8/+10
|
* Fixed options SHOW_BUSYBUFS and PANIC_REBOOT_WAIT_TIME which were brokenbde1997-08-311-4/+4
| | | | | | by incomplete cutting and pasting from machdep.c to kern_shutdown.c. PR: 3953
* Put I*86_CPU options in opt_global.h and don't #include "opt_cpu.h"bde1997-08-311-5/+7
| | | | centrally.
* Synchronize with sys/i386/conf/files.i386 and sys/i386/i386/trap.ckato1997-08-291-1/+2
| | | | revisions 1.173 and 1.109, respectively.
* Document the VM86 option.jlemon1997-08-281-1/+8
| | | | Reminded-by: John-Mark Gurney
* Remove the vm86 support as an LKM, and link it directly into the kerneljlemon1997-08-281-1/+2
| | | | | if 'options "VM86"' is in the config file. The LKM was really for development, and has probably outlived its usefulness.
* Synchronize with sys/i386/conf/files.i386 and majors.i386 revisionskato1997-08-281-1/+2
| | | | 1.172 and 1.17, respectively.
* Add entries for Comtrol Rocketport serial card.jkh1997-08-283-4/+37
| | | | Submitted by: Amir Farah <amir@comtrol.com>
* Use existing path, even though PC-98 doesn't support each device driver.kato1997-08-271-44/+44
|
* Clean up the SMP AP bootstrap and eliminate the wretched idle procs.peter1997-08-261-1/+0
| | | | | | | | | | | | | | | | | | | | - We now have enough per-cpu idle context, the real idle loop has been revived (cpu's halt now with nothing to do). - Some preliminary support for running some operations outside the global lock (eg: zeroing "free but not yet zeroed pages") is present but appears to cause problems. Off by default. - the smp_active sysctl now behaves differently. It's merely a 'true/false' option. Setting smp_active to zero causes the AP's to halt in the idle loop and stop scheduling processes. - bootstrap is a lot safer. Instead of sharing a statically compiled in stack a number of times (which has caused lots of problems) and then abandoning it, we use the idle context to boot the AP's directly. This should help >2 cpu support since the bootlock stuff was in doubt. - print physical apic id in traps.. helps identify private pages getting out of sync. (You don't want to know how much hair I tore out with this!) More cleanup to follow, this is more of a checkpoint than a 'finished' thing.
* Mention PPP_DEFLATE and PPP_BSDCOMP for kernel ppp.peter1997-08-191-1/+6
|
* Use two NetBSD-style options (PPP_DEFLATE and PPP_BSDCOMP) to controlpeter1997-08-192-4/+6
| | | | whether or not to compile the two ppp compression methods.
* Update kernel parts of pppd from 2.2.0 to 2.3.0. I've yet to look at thepeter1997-08-191-0/+2
| | | | | | | | | | 2.3.0 -> 2.3.1 changes, but I seem to recall that there are certain "issues" with 2.3.1 (I'm not sure if it's just pppd or the whole lot, I am not quite that far). The present pppd seems to work with it just fine for the time being. Among the changes are that zlib (aka LZ77 aka deflate aka gzip) compression is implemented as well as the original compress(1) LZW style.
* Enable hostcache code.wollman1997-08-161-0/+2
|
* Assign character major 82 to the 'ppi' Generic Parallel Port I/O device.msmith1997-08-161-1/+2
|
* Add new ppbus files.msmith1997-08-161-0/+2
| | | | Submitted by: Nicolas Souchu <Nicolas.Souchu@prism.uvsq.fr>
* Oops, reference the ppi and vpo drivers properly. Obviously nobody'smsmith1997-08-161-2/+2
| | | | using this stuff yet 8)
OpenPOWER on IntegriCloud