summaryrefslogtreecommitdiffstats
path: root/sys/conf
Commit message (Collapse)AuthorAgeFilesLines
* Add atomic.s.dfr1998-08-241-1/+2
|
* Use a relative path to bsd.kern.mk if the relative mk directory exists.bde1998-08-242-2/+10
|
* Add BREAK_TO_DEBUGGER so that config stops whininggpalmer1998-08-211-1/+3
|
* Add support for TurboChannel alphas (DEC 3000/300 and 3000/500).dfr1998-08-202-2/+18
| | | | | Obtained from: NetBSD Submitted by: Andrew Gallatin <gallatin@cs.duke.edu>
* Oops, the previous commit was of a local version.bde1998-08-171-26/+20
|
* FIxed typo (syntax error) in previous commit.bde1998-08-171-19/+25
|
* Import the (Fast) Etherlink XL driver. I'm reasonally confident in itswpaul1998-08-162-2/+11
| | | | | | | | | | stability now. ALso modify /sys/conf/files, /sys/i386/conf/GENERIC and /sys/i386/conf/LINT to add entries for the XL driver. Deactivate support for the XL adapters in the vortex driver. LAstly, add a man page. (Also added an MLINKS entry for the ThunderLAN man page which I forgot previously.)
* Sync with sys/i386/conf/options.i386 revision up to 1.84.kato1998-08-101-1/+5
|
* Reserve majors for M-Systems DiskOnChip driver. This driver will bephk1998-08-101-1/+3
| | | | available directly from M-systems.
* - Added SC_BAD_FLICKER for syscons.yokota1998-08-102-2/+6
| | | | - Added the flag 0x40 (quiet bell) for syscons.
* Lots of changes, including:dfr1998-08-105-8/+19
| | | | | | | | | | * Support for AlphaStation 200, 250, 255, 400 * Untested support for UDB, Multia, AXPpci33 (Noname) * Support for Personal Workstation 433a/433au, 500a/500au, 600a/600au (Miata) * Some minor fixes and improvements to interrupt handling. Submitted by: Andrew Gallatin <gallatin@cs.duke.edu> (AS200, Miata) Obtained from: NetBSD (some code for AS200, Miata, Noname)
* A few misc changes to get the spigot and meteor board working in 3.0.jkh1998-08-082-2/+12
| | | | Submitted by: Jim Lowe <james@miller.cs.uwm.edu>
* Make ../Makefile.inc handling more consistant to prevent multiple includespeter1998-08-081-1/+4
| | | | | | when certain .mk files include other .mk files. This will remove the need for multiple include protection in some other makefiles around the tree (and helps some elf conditionals).
* Sync with sys/i386/conf/files.i386 and majors.i386 revisions 1.200 andkato1998-08-071-1/+2
| | | | 1.44, respectively.
* Update DPT driver from 1.4.3 to 1.4.5eivind1998-08-052-12/+32
| | | | Submitted by: Simon Shapiro <shimon@simon-shapiro.org>
* Add driver dgm - for the Digiboard PC/Xembrian1998-08-043-6/+10
| | | | | | | Submitted by: "IBS / Andre Oppermann" <andre@pipeline.ch> DEVFS additions: brian dgm gets major number 101.
* Major ppbus updates from the author.msmith1998-08-032-1/+6
| | | | | | | | | | | | | | | | | - ppbus now supports PLIP via the if_plip driver - ieee1284 infrastructure added, including parallel-port PnP - port microsequencer added, for scripting the sort of port I/O that is common with parallel devices without endless calls up and down through the driver structure. - improved bus ownership behaviour among the ppbus-using drivers. - improved I/O chipset feature detection The vpo driver is now implemented using the microsequencer, leading to some performance improvements as well as providing an extensive example of its use. Reviewed by: msmith Submitted by: Nicolas Souchu <Nicolas.Souchu@prism.uvsq.fr>
* Change load address to 0xfffffc0000300000 to help support AS200.dfr1998-07-303-4/+4
|
* Honor NOSHARED for tools. All tools should be built static forbde1998-07-291-5/+9
| | | | | | | | | | | `make world' to avoid problems with picking up (new) target or (stale) host shared libraries. Don't honor -static in LDFLAGS for linking LKMs. LDFLAGS is not actually for ld, but we use it anyway, and must prevent -static being misinterpreted as -s. Don't hide any of the link steps.
* pseudo-device ssc requires su.c (pseudo-device su)brian1998-07-281-0/+1
| | | | | Submitted by: woods@zeus.leitch.com (Greg A. Woods) PR: 7413
* Add KN20AA support.dfr1998-07-222-6/+26
| | | | Add entries for syscons.
* Tweaks to stop config(8) warnings and to avoid an unfinished experiment ofdfr1998-07-221-3/+3
| | | | | | mine. Submitted by: Andrew Gallatin <gallatin@cs.duke.edu>
* Sync with sys/i386/conf/files.i386 revision 1.199.kato1998-07-211-1/+2
|
* Add the 'cs' driver for Crystal Semiconductor CS89x0 devices. Thismsmith1998-07-202-2/+5
| | | | | | supports PnP and if_media. I've been running a slightly older version here for several weeks now. Submitted by: Maxim Bolotin <max@rsu.ru>
* Tweaks for cross-building from NetBSD/alpha.dfr1998-07-151-3/+3
| | | | Submitted by: Andrew Gallatin <gallatin@cs.duke.edu>
* Linker script for alpha kernel.dfr1998-07-152-0/+266
|
* Overhaul the spl system so that it actually works properly.dfr1998-07-121-7/+7
|
* Define option DEC_EB164dfr1998-07-121-1/+2
|
* Add some bits and pieces for my test box.dfr1998-07-121-1/+11
|
* Sync with sys/i386/conf/Makefile.i386 revision 1.117.kato1998-07-121-40/+30
|
* Removed historical dependencies on `Makefile'. They had rotted to beingbde1998-07-122-64/+44
| | | | | | | | | | | | | | | | | | | | | | mostly for objects that have the fewest dependencies on `Makefile' (since they were mostly for utilities and objects generated from *.s and these don't depend on profiling flags). Give an explicit rule for building vnode_if.o. This fixes building it without ${PROF}. Use .ORDER instead of a stamp file to avoid building vnode_if.[ch] concurrently. Removed explicit dependencies that will be generated by `make' (.c.o) or will be generated by mkdep. Added missing dependencies of special objects on opt_global.h. Use ${NORMAL_C} instead of special rules for special objects where possible. FIxed dependencies of vers.o.
* Removed all traces of PARAM in Makefile.i386. Incremented CONFIGVERSbde1998-07-122-20/+20
| | | | | | | to reflect the dependency of Makefile.i386 on nothing being put in PARAM. Config versioning is too closely coupled with the Makefile.i386.
* Prepare to handle MAXUSERS as a normal option.bde1998-07-121-1/+2
|
* Moved definition of fscale from param.c to kern_synch.c where itbde1998-07-111-6/+1
| | | | | should always have been (it has no user-servicable parts even at compile time) and staticized it.
* Add ipforward optionjulian1998-07-111-2/+2
|
* Forgot to register the IPFIREWALL_FORWARD option.julian1998-07-061-1/+2
|
* Sync with sys/i386/conf/options.i386 revision 1.82.kato1998-07-021-9/+8
|
* Remove unused optionjulian1998-07-021-3/+1
|
* Add 3 sysctl variables for future use by ps)1_phk1998-06-301-1/+4
|
* Nuked opt_defunct.h and kern_opt.c. config(8) now generates good enoughbde1998-06-304-19/+3
| | | | warnings about all unknown options.
* remove option LINUX as it did nothing, add DEBUG_LINUX to debug thejmg1998-06-301-2/+4
| | | | | | linux emulation... (actually moved LINUX to opt_dontuse.h)
* move OVERRIDE_TUNER from i386 to general options... it's not i386jmg1998-06-302-4/+5
| | | | specific
* document options to hardwire GUS irq/dmas...jmg1998-06-302-2/+11
|
* document PCI_QUIET that prevents pci from compiling in so many stringsjmg1998-06-302-3/+11
|
* document some VM paging options for cache sizes:jmg1998-06-302-2/+13
| | | | | | PQ_NOOPT no coloring PQ_LARGECACHE used for 512k/16k cache PQ_HUGECACHE used for 1024k/16k cache
* make NO_SCSI_SENSE a proper option (already documented in LINT)jmg1998-06-301-1/+2
|
* document and make EXPORTMFS a new style optionjmg1998-06-302-2/+5
|
* convert some nfs tunables to options, these are:jmg1998-06-302-3/+27
| | | | | | | | | | | | | | | | NFS_MINATTRTIMO VREG attrib cache timeout in sec NFS_MAXATTRTIMO NFS_MINDIRATTRTIMO VDIR attrib cache timeout in sec NFS_MAXDIRATTRTIMO NFS_GATHERDELAY Default write gather delay (msec) NFS_UIDHASHSIZ Tune the size of nfssvc_sock with this NFS_WDELAYHASHSIZ and with this NFS_MUIDHASHSIZ Tune the size of nfsmount with this NFS_NOSERVER (already documented in LINT) NFS_DEBUG turn on NFS debugging also, because NFS_ROOT is used by very different files, it has been renamed to opt_nfsroot.h instead of the old opt_nfs.h....
* Add options for selecting ELF or KLD symbols in DDB.dfr1998-06-282-1/+5
|
* Sync with sys/i386/conf/Makefile.i386 revision 1.115.kato1998-06-251-5/+7
|
OpenPOWER on IntegriCloud