Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-05-28 | Remove obvious EST table dupe: Pentium M 733 and Pentium M 773 (VID #H), | Dimitry Andric | |
and zap trailing spaces. No functional change. | |||
2006-05-28 | junk to read and write configuration pages. | David Gwynne | |
2006-05-28 | make it look a little less chaotic. | Joris Vink | |
2006-05-28 | teach log how to handle the revisions passed on the command line. | Joris Vink | |
the following now works: 'opencvs log -r1.5:1.15 foobar' | |||
2006-05-28 | add code which allows us to select revisions based upon | Joris Vink | |
a string given by the user on the command line, much like rcs_revision_select in OpenRCS. this will be usefull for some commands. | |||
2006-05-28 | when parsing host specifications, initialize host address queue pointers, not | Hans-Joerg Hoexer | |
used yet. | |||
2006-05-28 | Check that a complete struct llc was captured (not only 3 bytes), | Moritz Jodeit | |
because it is accessed later on. ok deraadt@ | |||
2006-05-28 | add basic 'cvs log' support. | Joris Vink | |
2006-05-28 | prepare for rule expansion. Get rid of addr_node, link struct | Hans-Joerg Hoexer | |
ipsec_addr_wrap directly. | |||
2006-05-28 | kill trainling whitespace | Hans-Joerg Hoexer | |
2006-05-28 | whoops, undo last commit. Of course, set_ipmask() is needed... | Hans-Joerg Hoexer | |
2006-05-28 | this one not needed yet. | Hans-Joerg Hoexer | |
2006-05-28 | fill in AF_INET6 cases | Todd T. Fries | |
this does not complete v6 support for ipsecctl, but makes progress ok hshoexer@ | |||
2006-05-28 | allow for weight to be added to sensors or servers, so that one can | Henning Brauer | |
weight timedelta sensors higher than ntp peers, for example ok deraadt mbalmer | |||
2006-05-28 | - scsi -> SCSI | Jason McIntyre | |
- fix SEE ALSO | |||
2006-05-28 | We don't have 'control devices' for st. Nor are we likely to get any | Kenneth R Westerback | |
in the foreseeable future. Eliminate half-baked, semi-operational code that tried to handle such devices. People who had stumbled across the previous control-like behaviour of erstX devices should not be relying on these semantics. Suggested by deraadt@. ok beck@ | |||
2006-05-28 | back out my last commit. art pointed out that sysctl cannot sleep when | David Gwynne | |
copying out to userland, so my fix was useless bloat that didnt really do anything. the problem instead appears to be a use after free in a driver rather than bad interactions with sysctl. | |||
2006-05-28 | ST_NEW_MOUNT was set/reset in a number of places but only examined inside | Kenneth R Westerback | |
a #if notyet/#endif block. It's been 'notyet' since 1995. Eliminate it. 'flense!' beck@ | |||
2006-05-28 | Can't call directly back into the prom if we "exit" at the root | Jason Wright | |
device prompt. We need to call shutdownhooks which will set the sab back into the mode the prom likes (I hate this chip) | |||
2006-05-28 | Assign a finalization event to the exchange initiated on soft expiry. | Ryan Thomas McBride | |
If the exchange fails, the existing phase 1 SA is invalidated and the exchange is retried at the Exchange-Max-Time interval until the SA hard timeout expires. Another sasyncd-related fix from nathanael at polymorpheous dot com ok ho@ hshoexer@ | |||
2006-05-28 | get clock src id from the timedelta sensor desc. | Henning Brauer | |
unfortunately I still don't have any hardware to test this ;( | |||
2006-05-28 | Move -A<oldfile> handling into separate chunk of code. This also | Ray Lai | |
removes a memory leak if -A is given multiple times. OK joris@ | |||
2006-05-28 | Change the timedelta sensor descritpion so that the first four bytes contain | Marc Balmer | |
the NTP identifier (filled with spaces), followed by a space and the station name (which might be the same as the NTP identifier). All timedelta sensor have to follow this scheme as OpenNTPD needs it. Requested by henning. | |||
2006-05-28 | if sysctl gives ENOENT the sensor is gone and we remove it | Henning Brauer | |
2006-05-28 | in the second example, only the trunk interface should have an IP address, | Reyk Floeter | |
not the trunk ports. figured out by jmc@ | |||
2006-05-28 | let sensor_query handle removals itself | Henning Brauer | |
2006-05-28 | don't #undef SDMMC_DEBUG | Uwe Stuehler | |
2006-05-28 | complete sentence | Uwe Stuehler | |
2006-05-28 | Xr sdmmc 4 | Uwe Stuehler | |
2006-05-28 | Don't fill in the rd_locker if we are creating a new RCS file. | Ray Lai | |
OK joris@ | |||
2006-05-28 | - if the "upa-portid" property doesn't exist, try "portid" (schizo) | Jason Wright | |
- hack enough of autoconf to get psycho and schizo working with device_register (autoconf appears to work now for schizo machines). | |||
2006-05-28 | sync, enable and move twe(4) out from untested on alpha | Martin Reindl | |
2006-05-28 | sync | Theo de Raadt | |
2006-05-28 | also report SA flags. | Hans-Joerg Hoexer | |
2006-05-28 | sync | Theo de Raadt | |
2006-05-28 | +.Xr ntpd 8 , | Jason McIntyre | |
ok henning mbalmer | |||
2006-05-28 | our add command can now add directories to the repository as well. | Joris Vink | |
2006-05-28 | several fixes to the file api: | Joris Vink | |
- default to CVS_FILE when something is totally unknown - cvs_get_repository_path() now returns the full repository path for the given argument. - cvs_get_repository_name() returns the contents of CVS/Repository to the caller. - allow command callbacks to specify if our recursion code needs to skip the directory or not. - when checking for a admin directory, make sure it is in fact a directory. if it is not we dont want to recurse inside. | |||
2006-05-28 | Fix open(2) semantics for ch(4) to not be completely on fresh minty crack: | Bob Beck | |
1) Don't use SCSI_IGNORE_NOT_READY when doing test_unit ready to wait for the device to come up. 2) use SCSI_IGNORE_ILLEGAL_REQUEST when doing test_unit_ready to wait for the device to come up (just as is done in st(4)) 3) add a ch_interpret_sense routing to perform special handling of the case where the unit is in the process of becoming ready. Hope springs eternal, that if the device tells us it is trying to become ready, then we should wait for it to do so, however long it takes (and on tape library scans this can take a while - i.e. a few minutes for large libraries). The custom handler ensures that the retry count is not decremented in this case and this case only. ok krw@ | |||
2006-05-28 | man pages for the SD subsystem | Theo de Raadt | |
2006-05-28 | Support for standard SD host controllers like the Ricoh 5C822, a small | Uwe Stuehler | |
generic bus layer, and SCSI emulation for SD/MMC memory cards. | |||
2006-05-28 | Add PCATCH to tsleep flags when a scsi command is waiting for an opening | Bob Beck | |
or is waiting to be retried, abort it when a signal interrupts the tsleep(). This fixes what was commited in version 1.92 to work properly. ok krw@ | |||
2006-05-28 | make the ISR bits visible so we can poll them in cngetc (w/out cnpollc). | Jason Wright | |
I still hate this chip. | |||
2006-05-28 | Allow len == 1 in systrace_fname(), so systraced processes can proceed | Pedro Martelletto | |
their *stat() calls, for example, and get ENOENT, which is expected for "", instead of a forced EINVAL. Fixes the spurious 'rm: : Invalid argument' warnings when building with option USE_SYSTRACE, reported on ports@. Okay provos@ sturm@ deraadt@ | |||
2006-05-28 | Actually remove the device id from events. | Michael Knudsen | |
2006-05-28 | unbrek tree by syncing protoypes to hotplug.c | Henning Brauer | |
2006-05-28 | remove the dev/isa/isavar.h include, as it is not needed | Felix Kronlage | |
ok miod@, martin@ | |||
2006-05-28 | remove sc_ic member from struct com_softc as it is not used anywhere | Felix Kronlage | |
ok miod@, martin@ | |||
2006-05-28 | build a lint library for us to use above | Theo de Raadt | |
2006-05-28 | Device id was removed from hotplug events so cope with this. | Michael Knudsen | |