summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-06-04lets not stop looking for a branch if the first oneJoris Vink
on the branches list does not match the one we are looking for, it might be further down.
2006-06-04sprinkle -n voodoo over the add, commit and import commands.Joris Vink
2006-06-04- ntpd no longer needs the NTP identifier as part of a timedelta sensorMarc Balmer
description. - create the timedelta sensors as early as possible, but mark them invalid as long as there is no real data. - update docs accordingly
2006-06-04- we can just use the 'sizdiff' variable instead of calling strlen(expbuf);Niall O'Higgins
simplifies things a little.
2006-06-04- ensure fin pointer is not invalidated after reallocNiall O'Higgins
2006-06-04- don't forget to free data in rcs_expand_keywords()Niall O'Higgins
2006-06-04- fix off-by-one in rcs_expand_keywords()Niall O'Higgins
2006-06-04teach this about NMEADISC tooTheo de Raadt
2006-06-04teach stty about NMEADISCTheo de Raadt
2006-06-04print time offsets much nicerTheo de Raadt
2006-06-03regenGordon Willem Klok
2006-06-03Add pci vendor id for Equinox systems, and several device ids forGordon Willem Klok
their multiport serial boards (SST series). ok deraadt@
2006-06-03syncTheo de Raadt
2006-06-03do chio.conf install from right placeTheo de Raadt
2006-06-03Use ifconfig delete/alias conforming with the man page.Marco Pfatschbacher
OK krw@
2006-06-03better synopsis for -g; ok mpfJason McIntyre
2006-06-03add support for update -A and update -r<rev>.Joris Vink
hacking on the plane from toronto to barbados. i will probably hack some more since im stuck in barbados for 12 lovely hours over night cause the carribean airlines dont understand the meaning over 'more than one flight a day'.
2006-06-03groups are specified using -g, not -m; ok mpfJason McIntyre
2006-06-03tweaks;Jason McIntyre
2006-06-03Do not set newaddr to 1 if "delete" was specified beforhands. In this caseClaudio Jeker
doalias is < 0. This fixes the problem where ifconfig em0 delete 10.0.0.1 created a 0.0.0.0/0 route entry and created a total mess because of that. Diff from markus@ OK beck@ markus@
2006-06-03kill trailing whitespace;Jason McIntyre
2006-06-03prettier function declarationMartin Reindl
2006-06-03- correctly handle binary files; say bye bye to using c strings for deltatexts.Niall O'Higgins
"slap it in" joris@
2006-06-03regenUwe Stuehler
2006-06-03correct product id for the SyChip deviceUwe Stuehler
2006-06-03- only call config_found for function number > 0Uwe Stuehler
- always display the product information in sdmmc_print()
2006-06-03make detachable, inspired by netbsdMartin Reindl
2006-06-02Add sasyncd to rc / rc.conf.Ryan Thomas McBride
ok deraadt@ cloder@
2006-06-02regenUwe Stuehler
2006-06-02more products from http://mmc.drzeus.cx/wiki/SDIOUwe Stuehler
2006-06-02just ise "HARD" as refid with sensors for v3 clientsHenning Brauer
2006-06-02s/CID/CIS/Uwe Stuehler
2006-06-02Fix name of lcd(4) in dmesg.Miod Vallat
2006-06-02Map the vector page cacheable during startup.Miod Vallat
2006-06-02Add some comments in the return endpointsPedro Martelletto
2006-06-02incredibly stupid typoHenning Brauer
2006-06-02mention com* at cardbus? for macppc.Felix Kronlage
2006-06-02now that com_cardbus works on macppc, add 'com* at cardbus?' to GENERICFelix Kronlage
ok martin@
2006-06-02whitespace cleanup, no binary change.Moritz Jodeit
2006-06-02Add a clonable devices implementation. Hacked along with thib@, inputPedro Martelletto
from krw@ and toby@, subliminal prodding from dlg@, okay deraadt@.
2006-06-02use the cardbus_conf_read/cardbus_conf_write macros instead of theFelix Kronlage
Cardbus_conf_read/Cardbus_conf_write ones, since the latters cause us to panic on macppc. ok pascoe@, uwe@, martin@
2006-06-02Make sasyncd fail back correctly with carp preemption enabled.Ryan Thomas McBride
Hold the carp demotion when booting, to prevent carp from preempting until we've sync'd with our peers. This adds a new CTL_ENDSNAP message to the exchange between the sasync daemons to indicate when the complete snapshot has been sent. Undemote after 60 seconds, or when recieve a CTL_ENDSNAP from all our peers. Syntax is slightly changed, removing the 'carp' keyword (so do "interface carp0" rather than "carp interface carp0". Adds 'group <ifgroup>', defaults to the 'carp' group. ok moritz@
2006-06-02Implement power hook (without looking at the capabilities yet).Uwe Stuehler
2006-06-02sbus_establish() and the associated linked list in the sbus softc is now onlyMiod Vallat
used to store a per-device reset callback, for use in sbusreset(). Except sbusreset() has never, ever, been used since Torek's sbus code went in. Time to recycle those wasted bits.
2006-06-02Carp demotion interlock. Prevents carp from preempting until the system isRyan Thomas McBride
booted, allowing for daemons to sync with peers before we take over. ok deraadt@ mpf@ moritz@
2006-06-02When trying to find leaf lebuffer devices, to work around broken old PROMs,Miod Vallat
walk the lebuffer_cd device list, instead of the sbus children list.
2006-06-02Print the demotion indicator in the carp packet.Ryan Thomas McBride
ok mpf@
2006-06-02All I wanted was to fix the bogus PG_SZ macro, but this is better:Miod Vallat
Do not try to map the message buffer with large pages, it's just as easy to simply use as many 8KB pages as necessary. From NetBSD.
2006-06-02Introduce attributes to interface groups.Marco Pfatschbacher
As a first user, move the global carp(4) demotion counter into the interface group. Thus we have the possibility to define which carp interfaces are demoted together. Put the demotion counter into the reserved field of the carp header. With this, we can have carp act smarter if multiple errors occur. It now always takes over other carp peers, that are advertising with a higher demote count. As a side effect, we can also have group failovers without the need of running in preempt mode. The protocol change does not break compability with older implementations. Collaborative work with mcbride@ OK mcbride@, henning@
2006-06-02Spelling.Christopher Pascoe