summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-01-13dont play with obio, this was very likely always wrong.Dale Rahn
2005-01-13Fix snprintf length field; from cloder@Todd C. Miller
2005-01-13fix the annotate usage (there is no -F flag) and add the missing bitsJean-Francois Brousseau
so the -r and -f arguments are supported, and complain if both -D and -r are given. GNU CVS silently accepts to have both specified, but does not produce output as a result.
2005-01-13unneeded, bye.Dale Rahn
2005-01-13Drop obio, attach lcd directly to pxaip. Fixes interrupt problems.Dale Rahn
2005-01-13we only need one copy of wsmux.Dale Rahn
2005-01-13dont make this dependant on bus_space_generic, that is bogus.Dale Rahn
keep the define for compat for now.
2005-01-13add usb serial things, ucomm attaches at least.Dale Rahn
2005-01-13handleMarc Espie
.if n .if t sequences (see jadetex.1) okay jmc@
2005-01-13document comments, and provide a 1-line summary of what a line inJason McIntyre
fstab looks like; from michael knudsen;
2005-01-13protect pfkeyv2_dump_walker with spltdb(). Noticed by mpech@, thanks!Hans-Joerg Hoexer
ok ho@ markus@
2005-01-13Handle all isspace() chars the same for -w and -b. ok millert@ markus@Otto Moerbeek
2005-01-13prettierJean-Francois Brousseau
2005-01-13* get rid of useless headersJean-Francois Brousseau
* fix the handlers for Root, valid-requests, Directory and Set * add a generic request handler for most of the requests expecting a response
2005-01-13when warning about unimplemented handlers, do not attempt to printJean-Francois Brousseau
the errno message string
2005-01-13HTML page does not seem to exist anymore so point to the PDF for now.Brad Smith
2005-01-13just mark it down when we can't install a package, instead of tryingMarc Espie
later, so that we can erase some temp info. Saves memory and time for -F kitchensink, mostly nop otherwise...
2005-01-13let collision reports give the name of the package they're trying toMarc Espie
install. When you add 2000 packages, this can be *real* confusing otherwise.
2005-01-13better descr for `cvs annotate'; help and ok jmc.Xavier Santolaria
2005-01-12use basename(3) instead of mangling the path to figure out theJean-Francois Brousseau
filename ourselves. Removes a bunch of now useless code. spotted by Joris Vink, diff by me
2005-01-12add rcs_kflag_get() to validate kflagsJean-Francois Brousseau
2005-01-12remove some differencesTheo de Raadt
2005-01-12Intel 82443BX DRAM address errata seems to be fixed in the latest revisionsAlexander Yurchenko
of the chipset. Inspired from netbsd pr by scottr@NetBSD.org. ok theo
2005-01-12update to sendmail 8.13.3Todd C. Miller
2005-01-12Try a watchdog reset (that powers off the zaurus) before cpu_reset().Uwe Stuehler
ok drahn@
2005-01-12fix kernel building with option UBSA_DEBUG.Moritz Jodeit
ok dlg@ henning@
2005-01-12Don't call ahc_setup_data() after calling ahc_execute_scb() since theKenneth R Westerback
scb may have been freed or made active. Only affects XS_RESET case. More correctly mirrors FreeBSD code. Already done to aic79xx_openbsd.c in r1.16.
2005-01-12Fix an off by one in the critical section clearing code. The code wasKenneth R Westerback
adjusting twice for the instruction pointer indicating the *next* instruction to execute. From FreeBSD r1.101.
2005-01-12less confusing `TARGET_USE_GCC3' since it's only used locally.Marc Espie
Okay niklas@
2005-01-11Document the 98543 topcat.Miod Vallat
2005-01-11Pass device names on intr_establish() call, other drivers need this too.Dale Rahn
2005-01-11rename via_shutdown() to via_powerdown() and remove unused prototype toMartin Reindl
shrink diff to NetBSD ok miod
2005-01-11oppsDale Rahn
2005-01-11pretty print in dmesgTheo de Raadt
2005-01-11add zaurus in right place (before wild card)Theo de Raadt
2005-01-11change the description of /usr/lib from `archive libraries' to `systemJason McIntyre
libraries', since not only archive libs are kept there. this from freebsd -r 1.112, except i changed their description and referenced intro(3) rather than ar(1), since it has a better description of library types.
2005-01-11no more stuff from gnuTheo de Raadt
2005-01-11put a seperate and real fsck on the mediaTheo de Raadt
2005-01-11correct unfortunate example which would have squished users' mailbox;Jason McIntyre
from ray at cyth dot net;
2005-01-11first cut at interrupt stats.Dale Rahn
2005-01-11more minor tweaks, ok jmcJared Yanovich
2005-01-11no need to call realpath() in adjustname()Henning Brauer
realpath returns an error if cwd is not writeable, and that is quite common with NFS-mounted ~ and sudo mg /etc/something - annoying as hell. realpath is not needed at all here, so zap it. vincent ok
2005-01-11Let 'boot' and 'ls' take arguments of the form [device:][file].Uwe Stuehler
2005-01-11tweaks;Jason McIntyre
2005-01-11document vnd ioctls;Jason McIntyre
from matthias kilian, tweaked by myself;
2005-01-11correctly deal with unspecified (zero) interface number in IPV6_MULTICAST_IF,Damien Miller
IPV6_{JOIN,LEAVE}_GROUP ioctls; ok itojun@
2005-01-11cvs -> CVS; jmc okXavier Santolaria
2005-01-11be more specific about pp log attempts.Marc Espie
explain about cast used as lvalues.
2005-01-11Reliability fixes:Miod Vallat
- Let the loop initialize completely before attempting to probe its devices. Fixes the "no answer from device 1" problem. - Handle ``loop unplugged'' events and force detach of all children in this case.
2005-01-11Close the Entries file we just created upon directory creation. ThisJean-Francois Brousseau
fixes the problem where a checkout would only add entries for directories. from Joris Vink