summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-09-07simple style change in the switchReyk Floeter
2007-09-07add an interface to dump running relay sessions to the control socketReyk Floeter
2007-09-07remove unused flags field from the structureReyk Floeter
2007-09-07store the table's port as the relay's dstportReyk Floeter
2007-09-07add a function to print delays in hours, minutes, and secondsReyk Floeter
2007-09-07Modify the heuristic for detection of speedstep to recognize a compatibleGordon Willem Klok
mobile Intel Pentium 3 as found in Dell c610 fixes pr5565. ok beck, toby
2007-09-07Say NUL when referring to \0Chad Loder
2007-09-07Based upon a diff orignally submitted by devin smith, Do two things run theGordon Willem Klok
check that the maxfid and the highest reported acpi p_state frequency agree only after actually getting the acpi p_state. Secondly prefer the legacy powernow table over ACPI because machines of this vintage of are likely to have broken ACPI implementations. Tested by devin smith and tilo stritzky. ok beck@
2007-09-06Add an unsolicited even handler for the Sigmatel Apple codecs. TheDeanna Phillips
speakers and line outputs will now mute and unmute depending on headphone presence. Tested on Macbook, Macbook Pro and Mini by otto@, ajacoutot@, merdely@ and Darrin Chandler, thanks.
2007-09-06Clean up some debug messages and wrap them in DPRINTF. From AlexeyDeanna Phillips
Suslikov.
2007-09-06Fix typos in comments. No code changesChad Loder
2007-09-06use strcspn to properly overwrite '\n' in fgets returned bufferCharles Longeau
ok moritz@ ray@
2007-09-06syncFelix Kronlage
2007-09-06add Olimex vendor id, couple device ids for usb -> serial jtag interfacesFelix Kronlage
and device id for garmin gpsmap 60csx. ok jsg@
2007-09-06Return pressure as absolute z axis on ITM touchscreens. Other modelsMatthieu Herrb
just return 0 or 1 on this axis, depending on the contact. Ok robert@ miod@.
2007-09-06Be more smart waiting for input for non-interactive scripts. FixOtto Moerbeek
based on a diff from debian: see their bug#296446. ok millert@ sobrado@
2007-09-06rename relay_host to print_host in log.cReyk Floeter
2007-09-06strictly check rcsnum_cmp() return against -1.Niall O'Higgins
fixes a bug in ci -r from Pierre Riteau <pierre.riteau at free.fr> via ray@
2007-09-06fix temperature sensor. the sensors framework wants muK not degC!Damien Bergamini
2007-09-06fix .NdDamien Bergamini
2007-09-06add iwn(4).Damien Bergamini
2007-09-06Fix some dates wrt Schleyer and the "Landshut" Lufthansa airplane.Bernd Ahlers
ok fkr@
2007-09-06s/Wi-Fi/WiFi/ since it is how Intel spell it.Damien Bergamini
2007-09-06disable interrupts coallescing for now.Damien Bergamini
it seems to generate way too much interrupts (as reported by vmstat -i) and i haven't run with it long enough... it isn't needed anyway since we do not yet support HT rates.
2007-09-06meaningless numbers and strings should not appear in sensor.desc; ok deraadt@Constantine A. Murenin
2007-09-06new iwn(4) driver for Intel Wireless WiFi Link 4965AGN.Damien Bergamini
no support for 802.11n functions yet (need work in net80211(9) first). committed over my 4965AGN, with only 2 of 3 antennas plugged :-) needs a firmware that is not freely redistributable (see man page). ok deraadt@
2007-09-06bump the copyright while touching these filesReyk Floeter
2007-09-06With a trunk(4) interface in fail over mode the trunk(4) interfaceReyk Floeter
will show input errors for packets received from any of the ports that are part of a fail over interface but are not the "master" port at the time. This fixes the problem by checking the error condition correctly. From brad at comstyle dot com
2007-09-06fix copyright; spotted by cnstTheo de Raadt
2007-09-06negate -12V input value; spotted by Alexander LobodzinskiTheo de Raadt
2007-09-06Shuffle some things around to get rid of #ifdev'sMarco Peereboom
2007-09-06sync with re-rolled 1.6.9p5 tarballTodd C. Miller
2007-09-06restore local changesTodd C. Miller
2007-09-06_xpg4_setrunelocale() returns an errno(2) value in the failureMoritz Jodeit
case and 0 if the locale was found. So checking against -1 makes no sense. ok millert@
2007-09-06Don't try disabling bus power before setting the voltage onJonathan Gray
the buggy ENE controller. Tested by Alexey Suslikov <alexey.suslikov@gmail.com> who pointed out a similiar workaround in Linux. ok miod@, nit and ok kettenis@
2007-09-06correct error in diff output; from Thoren McDoleJason McIntyre
2007-09-06Add nvram read and validate functions. ok marco@David Collins
2007-09-05update to sudo 1.6.9p5Todd C. Miller
2007-09-05fix DPRINTFN() abuseJacob Meuser
ok ratchov@
2007-09-05Add MBOX debug flag.Marco Peereboom
Add enable and disable interrupt functions. Make qli_mgmt call qli_intr when cold. Add qli_intr skeleton that deals with mbox commands. Add mailbox dump command.
2007-09-05The rewritten newfile() algorithm introduced in rev 1.12 wasTodd C. Miller
incorrect. This simpler version from Pete Honeyman passes all the tests I thow at it. OK deraadt@ some time ago.
2007-09-05IPv6 support for sppp layer, based on NetBSD version.Can Erkin Acar
ok claudio@
2007-09-05Add missing header to avoid warningCharles Longeau
ok millert@ ray@
2007-09-05typo; Mike BelopuhovTheo de Raadt
2007-09-05Cope with if counters being u_int64_t now here, too.Michael Knudsen
ok claudio
2007-09-05Correct the format strings after the recent rt_metrics changes.Claudio Jeker
rmx_pksent is not u_int64_t all others are just u_int. This is almost the same as in usr.bin/netstat.
2007-09-05Correct the format strings after the recent rt_metrics changes.Claudio Jeker
rmx_pksent is not u_int64_t all others are just u_int.
2007-09-05Counters switched to u_int64_t so use %llu to print them.Claudio Jeker
Found by and OK mk@ + OK mglocker@
2007-09-05- use a consistent grammatical case for the C comments sectionJason McIntyre
- remove useless brackets - new sentence, new line
2007-09-05Call ERR trap _before_ doing exit handling. Otherwise it's too lateOtto Moerbeek
and the ERR trap won't get called at all. ok millert@