summaryrefslogtreecommitdiffstats
path: root/sys/conf
Commit message (Collapse)AuthorAgeFilesLines
* USERCONFIG_BOOT -> INTRO_USERCONFIGmsmith1998-11-061-3/+3
| | | | Submitted by: des
* make lnc0 definition in LINT match GENERICobrien1998-11-061-2/+2
|
* add AMD Am7990 & Am79C960 to description of lnc(4)obrien1998-11-061-2/+2
|
* Sync with sys/i386/conf/options.i386 revision 1.91.kato1998-11-061-2/+2
|
* Sync with sys/i386/conf/Makefile.i386 revision 1.128.kato1998-11-061-10/+2
|
* Document the new NSFBUFS option.dg1998-11-051-1/+8
|
* Implemented zero-copy TCP/IP extensions via sendfile(2) - send adg1998-11-052-2/+9
| | | | | | | | | | | file to a stream socket. sendfile(2) is similar to implementations in HP-UX, Linux, and other systems, but the API is more extensive and addresses many of the complaints that the Apache Group and others have had with those other implementations. Thanks to Marc Slemko of the Apache Group for helping me work out the best API for this. Anyway, this has the "net" result of speeding up sends of files over TCP/IP sockets by about 10X (that is to say, uses 1/10th of the CPU cycles) when compared to a traditional read/write loop.
* Do not add ${KMOD} to the CLEANFILES list. We want ${PROG} which is eitherpeter1998-11-051-2/+2
| | | | | ${KMOD}.o or ${KMOD}.ko. Otherwise we can delete the source shell script for linux, joy and ibcs2.
* Make a.out kernels kld compatable by default...peter1998-11-042-20/+4
|
* Back out previous commit. The bpfilter -> bpf transition will have to be ades1998-11-032-6/+3
| | | | flag day unless we can hack config(8) to smooth things over.
* Rename the 'bpfilter' pseudo-device to 'bpf'. The old syntax is still legaldes1998-11-032-3/+6
| | | | and will stick around for a while.
* Remove USERCONFIG_BOOT, add INTRO_USERCONFIGmsmith1998-11-031-2/+2
|
* Oops forgot to remove peter's 'device iicbb0' declaration. Done.nsouch1998-11-011-2/+1
|
* Add controller iicbb (generic I2C bit-banging code) and lpbbnsouch1998-11-011-2/+16
| | | | | | (official Philips I2C parallel interface) Add comments for bktr port to the new I2C framework
* The kernel should compile even /dev/null does not exists.wosch1998-11-011-3/+2
|
* I do not know if this is correct, but add iicbb0 as a device so thatpeter1998-10-311-1/+2
| | | | LINT links.
* Extensions to iicbus(4) added + brooktree848 driver ported to new I2Cnsouch1998-10-311-0/+17
| | | | framework.
* Document that we support i82595-based Ethernet adapters (Intel EtherExpressdes1998-10-301-1/+2
| | | | Pro/10 and Pro/10+).
* Bump VERSREQ to make ``config'' happy.dima1998-10-291-2/+2
| | | | Obtained from: Makefile.i386
* Sync with sys/i386/conf/Makefile.i386 revision 1.127.kato1998-10-281-2/+2
|
* Add BUS_DEBUG option in opt_bus.hdfr1998-10-281-1/+4
|
* Add some missing dependencies.phk1998-10-251-4/+6
| | | | Grumbled about in principle: bde
* Ignore `vector xxxintr' specifications except for checking their syntax.bde1998-10-232-4/+4
| | | | | | | | | | | Interrupt handlers are now configured in drivers. Didn't update config/SMM.doc. It doesn't have any i386 examples (not even `isa'). Bumped CONFIGVERS. This is not necessary for -current yet, but using the new config with old system sources gives null pointers for all vectors.
* Quote port names that have a digit in them. IO_TIMER1 was lexed asbde1998-10-221-8/+8
| | | | | | | | { port_name = "IO_TIMER", port_number = 1 } and only worked because it was reassembled to "IO_TIMER1". Trailing digits always work, but this is too magic to depend on. Don't quote port names that don't have a digit in them.
* Removed all `vector xxxintr' specifications. Interrupt handlers are nowbde1998-10-221-67/+67
| | | | configured in drivers.
* Add driver support for PCI fast ethernet adapters based on thewpaul1998-10-182-1/+8
| | | | | | | | | RealTek 8129/8139 chipset like I've been threatening. Update kernel configs, userconfig.c, relnotes and sysinstall. No man page yet; comming soon. I consider this driver stable enough that I want to give it some exposure in -current.
* Added missing dependency for bus_if.o on bus_if.hphk1998-10-181-1/+1
|
* Complete the description of sio flag 0x40.alex1998-10-161-1/+2
| | | | Reviewed by: bde
* Back to -current again.jkh1998-10-161-2/+2
|
* Update the kld gluepeter1998-10-161-1/+32
| | | | Pre-Approved by: jkh
* Change to 3.0-RELEASE in anticipation of the tag.jkh1998-10-161-2/+2
|
* Forgot to commit this; the alpha uses the kld symbol interface now. Thepeter1998-10-151-1/+0
| | | | tables that db_elf.c is expecting are not loaded in that format any more.
* Support encapsulating ELF linker sets for KLD modules via gensetdefs.peter1998-10-141-3/+36
| | | | | Support name based dependencies at build time. This is a hack. These only affect KLD modules.
* Fixed bitrot in mfs options. MFS_ROOT split into MFS_ROOT andbde1998-10-122-6/+4
| | | | MFS_ROOT_SIZE, and MFS_AUTOLOAD went away.
* Sync with sys/i386/conf/files.i386 revision 1.206.kato1998-10-111-1/+3
|
* Sync with sys/i386/conf/Makefile.i386 revision 1.126.kato1998-10-111-2/+2
|
* Make kernel build on alpha again. New kld stuff needs rindex.gpalmer1998-10-101-1/+2
|
* Add GENERIC rev 1.124 changesobrien1998-10-101-2/+3
|
* rm *.so and *.ko in clean as well.peter1998-10-102-4/+4
|
* Remove DDB_ELF_SYMBOLS and DDB_KLD_SYMBOLS options. KLD will be the solepeter1998-10-092-5/+4
| | | | interface to symbols in an elf kernel.
* elf_machdep.c and rindex.c are now standardpeter1998-10-091-1/+3
|
* New files for kernel environment and module metadata interfaces.msmith1998-10-091-0/+2
|
* Fix syntax errors I introduced.obrien1998-10-071-3/+3
|
* Add entries for the adw device driver.gibbs1998-10-071-2/+4
|
* Add ADW_ALLOW_MEMIO and DPT_ALLOW_MEMIO. Until our configurationgibbs1998-10-071-2/+7
| | | | | framework properly detects broken PCI-PCI bridges, users will have to manually enable memory mapped I/O for these drivers. <sigh>
* Add support for the ASC3550 AdvanSys SCSI Host Controller (aka 940UW).gibbs1998-10-071-0/+4
|
* - Implement enabling write allocate on AMD K5/K6/K6-2 cpus.kato1998-10-063-5/+9
| | | | | | | | | | | | The code was originaly contributed by Kelly Yancey <kbyanc@freedomnet.com> in PR i386/6269 and revised by Akio Morita <amorita@meadow.scphys.kyoto-u.ac.jp> and me. Test was performed by Akio Morita and Toshiomi Moriki <moriki@db.is.kyushu-u.ac.jp>. - Fix stylistic bug in identcpu.c. - Update copyright in initcpu.c - Fix typo in LINT. PR: 6269 and 6270
* Sync with sys/i386/conf/Makefile.i386 revision 1.125.kato1998-10-051-3/+16
|
* Document that ``options xFS_ROOT'' requires the associated ``options xFS''.obrien1998-10-051-3/+4
| | | | Reordered xFS_ROOT's to be below the associated xFS.
* Add a new CAM debugging mode, CAM_DEBUG_CDB. This causes the kernel token1998-10-021-4/+4
| | | | | | | | | | | | | print out a one line description/dump of every SCSI CDB sent to a particular debugging target or targets. This is a good bit more useful than the other debugging modes, I think. Change some things in LINT to note the availability of this new option. Fix an erroneous argument to scsi_cdb_string() in scsi_all.c Reviewed by: gibbs
OpenPOWER on IntegriCloud