summaryrefslogtreecommitdiff
path: root/sys/conf
AgeCommit message (Collapse)Author
2004-10-08Move dev/cons.c to MI conf/files.Alexander Yurchenko
ok miod@
2004-09-15add pcxu tlb handlers and cpu probingMichael Shalayeff
add u2/uturn ioa driver in dumb mode now enable pcxu/pcxw support
2004-09-14remove remaining unused traces from src routeHenning Brauer
2004-09-14move to 3.6-currentTheo de Raadt
2004-08-20take out the -beta nowTheo de Raadt
2004-08-09move to 3.6-betaTheo de Raadt
2004-08-05Cleanup attachs for com and lpt for mips.Per Fogelstrom
ok, miod, todd
2004-07-31remove GATEWAY and IPFORWARDING option knobs, use the sysctl.Brad Smith
ok mcbride@ miod@ deraadt@
2004-07-29put the scheduler in its own file. reduces clutter, and logically separatesTed Unangst
"put this process to sleep" and "find a process to run" operations. no functional change. ok art@
2004-07-28This touches only MI code, and adds new time keeping code. TheThorsten Lockert
code is all conditionalized on __HAVE_TIMECOUNTER, and not enabled on any platforms. adjtime(2) support exists, courtesy of nordin@, sysctl(2) support and a concept of quality for each time source attached exists. High quality time sources exists for PIIX4 ACPI timer as well as some AMD power management chips. This will have to be redone once we actually add ACPI support (at that time we need to use the ACPI interfaces to get at these clocks). ok art@ ken@ miod@ jmc@ and many more
2004-07-21kqueue support for NFS, adapted from netbsd.marius eriksen
ok art@ pedro@, "get it in" deraadt@
2004-07-20Introducing mutexes - cpu-owned spinning locks with spl semantics.Artur Grabowski
This is the MI (slightly inefficient and not MP safe) implementation. deraadt@ ok Tested by many. (this and following commits)
2004-07-15remove commented-out netiso stuffHenning Brauer
2004-07-15bye bye netiso, you won't be missedHenning Brauer
ok millert deraadt
2004-06-28Add new, generic ``evcount'' event counter API to the kernel. From art@,Aaron Campbell
with modifications from me. Includes code for generic interrupt counter fetching via sysctl. deraadt@ tholo@ drahn@ millert@ ok
2004-06-22atw(4) driver from NetBSD (dyoung). Based in part on a port byTodd C. Miller
Matthew Gream. Unfortunately, the adm8211 card I have with me does not work correctly with the driver yet so real testing will have to wait until I get my hands on an adm8211-based DWL-650 or something similar.
2004-06-22Import current NetBSD/FreeBSD 802.11 framework.Todd C. Miller
Based in part on a diff from Matthew Gream.
2004-06-20goodbye TUBA. deraadt okJun-ichiro itojun Hagino
2004-06-06extend routing table to be able to match and route packets based onCedric Berger
their *source* IP address in addition to their destination address. routing table "destination" now contains a "struct sockaddr_rtin" for IPv4 instead of a "struct sockaddr_in". the routing socket has been extended in a backward-compatible way. todo: PMTU enhancements, IPv6. ok deraadt@ mcbride@
2004-06-03A framework for supporting various General Purpose Input/Output (GPIO)Alexander Yurchenko
devices. Such devices provide a set of pins that you can use to connect for example leds to it. The pins can be accessed either from userland through the /dev/gpio* device files or from the kernel drivers. The latter is necessary for implementing timing-sensitive things like i2c or 1-wire master controller. ok deraadt@
2004-05-30Devices hot plugging support.Alexander Yurchenko
The hotplug pseudo-device passes device attachment and detachment events to userland. When a device attaches or detaches, the corresponding event is queued. The events can then be obtained from the queue through the read(2) call on the /dev/hotplug device file. Each event consists of event type (attach/detach), device class (DV_*) and device name (sd1 e.g.). We have hotplug pseudo-device on alpha, amd64, i386, macppc and sparc64. Since it was tested only on i386 other archs has it commented out in GENERIC until tested. The idea liked peter@ tedu@ drahn@ millert@ marco@ henning@. Ok deraadt@.
2004-05-28bpf device cloning.Alexander Yurchenko
Now to have more bpf devices just add device nodes in /dev, no need to recompile kernel anymore. Code from form@pdp-11.org.ru, some help from markus@. ok markus@ canacar@ deraadt@
2004-05-27oopsTheo de Raadt
2004-05-27remove tedu crudTheo de Raadt
2004-05-27make acct(2) optional with ACCOUNTINGTed Unangst
ok art@ deraadt@
2004-05-23I2C framework originally written by Steve C. Woodford and Jason R. ThorpeAlexander Yurchenko
for NetBSD (r). This framework supports various i2c master controllers: - dumb bit-bang controllers - a few styles of automated controllers that give you control over sending start/stop conditions on the i2c bus - automated controllers that are too smart for its own good, giving software no control over start/stop conditions - smbus controllers by emulating smbus protocol with i2c commands i2c slave devices need their addresses to be specified in the kernel config file, no device discovery presented. ok deraadt@
2004-05-20Add ahd. ok krw@Marco Peereboom
2004-05-07Replace the old ssh(4) NCR53C710 scsi driver with a pcctwo attachment forMiod Vallat
the MI osiop(4) driver. This improves performance very slighly and should also improve reliability. Tested on 25MHz (50MHz osiop) and 33MHz (66MHz osiop) MVME187 boards.
2004-05-07Replace RSA-derived md5 code with code derived from Colin Plumb's PD version.Todd C. Miller
This moves md5.c out of libkern and into sys/crypto where it belongs (as requested by markus@). Note that md5.c is still mandatory (dev/rnd.c uses it). Verified with IPsec + hmac-md5 and tcp md5sig. OK henning@ and hshoexer@
2004-05-06carp needs sha1.c; noticed by form@pdp-11.org.ru.Alexander Yurchenko
ok deraadt@
2004-05-03Add COMPAT_35Todd C. Miller
2004-04-25radix tree with multipath support. from kame. deraadt okJun-ichiro itojun Hagino
user visible changes: - you can add multiple routes with same key (route add A B then route add A C) - you have to specify gateway address if there are multiple entries on the table (route delete A B, instead of route delete A) kernel change: - radix_node_head has an extra entry - rnh_deladdr takes extra argument TODO: - actually take advantage of multipath (rtalloc -> rtalloc_mpath)
2004-04-10Make it more obvious that you don't have to modify the counts on clonableRyan Thomas McBride
devices anymore. ok deraadt@ henning@ krw@ millert@
2004-04-05make it easier to tag releases/current/betaTheo de Raadt
2004-04-05we are at 3.5-current nowTheo de Raadt
2004-03-12Oops, declare oosiop.Miod Vallat
2004-03-10skip uvm_loan until later (kernel shrink); idea from markusTheo de Raadt
2004-03-09scratch the -beta partTheo de Raadt
2004-03-06Add last 'files' bit to allow mpt driver to be compiled.Kenneth R Westerback
2004-03-02disable COMPAT_25; ok miod millertTheo de Raadt
2004-02-27move to 3.5-betaTheo de Raadt
2004-02-13support secondary com@dino from todd@Michael Shalayeff
2004-02-10Decrease the initial number of ptys from 64 to 16. If the systemsTodd C. Miller
needs more it will allocate them on demand. OK deraadt@ beck@
2004-02-10Adjust comment now that number of ptys is dynamic.Todd C. Miller
2004-01-26TCP_SIGNATURE enabled by defaultTheo de Raadt
2004-01-18clean out #ifdef horror show in xfs_dev-bsd.c and enable XFS in GENERIC.Bob Beck
ok deraadt@, todd@
2004-01-07no kern_watchdog for SMALL_KERNEL; ok deraadt@Markus Friedl
2004-01-07dirhash is good to go. ok deraadt@Ted Unangst
2004-01-07ieee80211 framework from NetBSD; ok'd by several people some time ago.Federico G. Schwindt
more fixes comming.
2004-01-01Crank SHMMNI from 32 -> 128 and SHMSEG from 8 -> 128. OK deraadt@Todd C. Miller