summaryrefslogtreecommitdiffstats
path: root/sys/conf
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused file.bde2000-03-231-148/+0
|
* Fixed most disordering (almost all except for i4b and targets withbde2000-03-231-248/+248
| | | | complicated rules).
* Fixed most disordering (all except for targets with complicated rules).bde2000-03-231-21/+21
|
* Document options HZ, place it in its own section `CLOCK OPTIONS' andasmodai2000-03-231-3/+20
| | | | | | add the undocumented CLK_* options to that section as well. Submitted by: Mike Tancsa <mike@sentex.ca> (partially)
* Fixed clean rule for font.h.bde2000-03-231-1/+1
|
* Merged from sys/conf/files.i386 revision 1.310 (re-activate K6-2kato2000-03-231-1/+1
| | | | MTRR driver).
* Isolate the Timecounter internals in their own two files.phk2000-03-201-0/+1
| | | | | | | | | | | | | | | Make the public interface more systematically named. Remove the alternate method, it doesn't do any good, only ruins performance. Add counters to profile the usage of the 8 access functions. Apply the beer-ware to my code. The weird +/- counts are caused by two repocopies behind the scenes: kern/kern_clock.c -> kern/kern_tc.c sys/time.h -> sys/timetc.h (thanks peter!)
* Argh, fix cut/paste mistake. This contributed to LINT not building.peter2000-03-201-2/+2
|
* Tag a warning on the isa compat shims at config time.peter2000-03-202-2/+4
|
* Use an intermediate file containing the module binary before convertingpeter2000-03-201-4/+7
| | | | | | it into a ``shared'' .ko file. This intermediate file can be directly linked into a static kernel. This isn't all that useful yet but will become much more interesting shortly.
* Enable the K6-2 MTRR driver again, since there are reports of it workinggreen2000-03-191-1/+1
| | | | | | with the applied change. Submitted by: Coleman Kane <cokane@one.net>
* Document and supply COMPAT_OLDPCI and COMPAT_OLDISA so 'make release'peter2000-03-191-0/+2
| | | | still works.
* Connect the ISA and PCI compatability shims to an option. In this casepeter2000-03-195-2/+5
| | | | | | | | it's options COMPAT_OLDISA and COMPAT_OLDPCI. This is meant to be a fairly strong incentive to update the older drivers to newbus, but doesn't (quite) leave anybody hanging with no hardware support. I was talking with a few folks and I was encouraged to simply break or disable the shims but that was a bit too drastic for my liking.
* Add device isic to the ASUSCOM_IPAC entry.asmodai2000-03-191-5/+6
| | | | Remove quotes around some i4b options to be consistent with the rest.
* Put ASUSCOM_IPAC in the section where it belongs, namely i4b.asmodai2000-03-181-3/+3
|
* Put the undocumented options back at the bottom as per oldasmodai2000-03-181-79/+79
| | | | | | practice. Place the debug options above the undocumented options.
* Document three debug options: npx, bus and vfs locks debugging.asmodai2000-03-181-3/+5
|
* Alpha 8200: redo files arrangement for 8200 support. There sort ofmjacob2000-03-181-6/+9
| | | | | still *is* a problem about how to get an mcclock attached w/o an ISA declaration though.
* Please welcome the URio driver. Written byn_hibma2000-03-163-0/+5
| | | | Iwasa Kazmi <kzmi\@ca2.so-net.ne.jp>
* Add urio (143)n_hibma2000-03-151-0/+1
|
* Move the files.* references to wdc files to the pc98 location after thepeter2000-03-151-3/+3
| | | | repo copy.
* Fix the spelling, and some minor tweaks on the ata device...sos2000-03-141-2/+3
|
* Remove wd entries.asmodai2000-03-141-74/+0
| | | | | Reviewed by: sos Approved by: sos, phk, peter
* Remove the wd driver from the i386 kernel options.asmodai2000-03-141-12/+0
|
* Remove unused options.asmodai2000-03-141-5/+0
| | | | | Reviewed by: sos Approved by: sos, phk, peter
* Remove option MD5, it has been standardized almost two years ago.ru2000-03-132-7/+0
|
* Welcome to 5.0-current!jkh2000-03-131-1/+1
| | | | "First commit" claimed by: jkh :)
* Add Compaq `ida' driver to GENERIC, update it's LINT entry.jlemon2000-03-091-11/+4
| | | | Approved by: jordan
* Changes for IDA driverjlemon2000-03-081-1/+2
|
* Document the discard device appearing as 'ds0', 'ds1', etc.nik2000-03-071-2/+2
| | | | | PR: docs/16994 Submitted by: Giorgos Keramidas <keramida@ceid.upatras.gr>
* Merged from files.i386 rev 1.307.kato2000-03-011-1/+1
|
* MCA is supported to some extent. Modify a comment that claims otherwise.mdodd2000-02-261-1/+1
| | | | Approved by: jkh
* Remove option IPFILTER_KLD. In case you wanted to kldload ipfilter,guido2000-02-231-1/+0
| | | | the module would only work in kernels built with this option.
* Add the VFS_AIO config option and leave it off by default. Unless thejasone2000-02-232-0/+5
| | | | | | | | | VFS_AIO option is specified, all aio-related syscalls return ENOSYS. The aio code is very fragile right now, and is unsuitable for default inclusion in a production shell box. Approved by: jkh
* Newbus-ify the USR Sportster TA Intern driver.gj2000-02-211-1/+1
| | | | | | | | | | | | | | | | | | Enable the driver in sys/conf/files.i386. In isa/isavar.h increase ISA_NPORT from 32 to 50. This is required because this brain-damaged card maps 49 (!) port ranges. This does not have a negative impact because this value only specifies the maximum number of entries in a linked list and not the size of an array which is allocated in all drivers. The register/fifo access routines were not newbus-ified because 1) I knew that the old code worked and is simpler and more efficient 2) the if_ed driver does something similar and 3) the newbus macros collapse to inb/outb anyway. Reviewed and tested by: hm Approved by: jkh
* Make it clear that 'options XSERVER' is for pcvt and not for syscons.yokota2000-02-161-1/+1
| | | | | Submitted by: Doug Barton <Doug@gorean.org> Approved by: jkh
* Add comments about 12160 options.mjacob2000-02-151-4/+8
| | | | Approved: jkh
* Clean up some loose ends in the network code, including the X.25 and ISOpeter2000-02-131-10/+0
| | | | | | | #ifdefs. Clean out unused netisr's and leftover netisr linker set gunk. Tested on x86 and alpha, including world. Approved by: jkh
* kbdcontrol isn't in everyones path(read: non-root people), so specifybillf2000-02-103-5/+5
| | | | | | an absolute path for us mere mortals. Approved by: jkh
* Complete the repo-copy of ida_pci.c to sys/dev/ida/mdodd2000-02-091-1/+1
| | | | Implicit Approval by: jkh
* if_fpa is included when 'device fpa' is present, not 'device fea'.mdodd2000-02-011-1/+1
| | | | Approved by: jkh
* Fix kernel build breakage.shin2000-01-301-1/+1
| | | | | | ip6_fw.c also needs ipv6firewall options. Sorry for the problem. Submitted by: Jim Bloom <bloom@acm.org>
* Use config's tools rather than #if's.peter2000-01-291-1/+1
|
* Remove 'conflicts' token - it has been effectively doing absolutelypeter2000-01-291-1/+1
| | | | | nothing for quite some time. The only thing that cared was userconfig, but it was for one invisible device so we never saw it's effects.
* Add some more comments about sound card bridge devices and theirpeter2000-01-291-4/+13
| | | | relationship with pcm and other things like newmidi.
* Still allow sbc/gusc/csa to perform as bridge devices (eg: to newmidi)peter2000-01-291-2/+3
| | | | without pcm being present.
* Allow the pnp and pci cards to be attached with just a 'device pcm' inpeter2000-01-292-29/+27
| | | | | | | the user's config file. Based on an idea/suggestion from Cameron (cg). Change LINT to build newpcm instead of the old Voxware derived stuff. That's much more useful in the longer term.
* Move the (duplicated exactly!) portable ISA pcm drivers to files andpeter2000-01-294-21/+9
| | | | tighten up the logic a little.
* Remove (commented out and marked as broken) pseudo-device tb. This waspeter2000-01-291-4/+0
| | | | added in rev 1.205 (october 1995).
* Remove kern/tty_tb.c.peter2000-01-291-1/+0
|
OpenPOWER on IntegriCloud