summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-03-21enable ahci(4). this only attaches to the jmicron controllers so far.David Gwynne
if anyone can quickly try this on i386 i'll enable it there too. ok deraadt@
2007-03-21describe .wav support in one sentenceUwe Stuehler
2007-03-21saost is dead, long live pxaost, and add .Xr to pxammc to intro; pointedUwe Stuehler
out by jmc
2007-03-21Rename saost.4 to pxaost.4 and update - the driver got rewritten; ok drahnUwe Stuehler
2007-03-21replace the array of u_int8_ts for the fis/registers with a struct to makeDavid Gwynne
it a bit easier to read. there are variations on this, but they can be defined later.
2007-03-21in addition to the host retry option in tables, add support for theReyk Floeter
optional connection "retry" to the forward to, service, and nat lookup options. for example, "nat lookup retry 3" is useful when running hoststated as a transparent proxy when connecting to unreliable frontend/backend servers. ok pyr@
2007-03-21For now, reserve one opening so we always have a CCB free to issue a softChristopher Pascoe
reset with during error recovery. Also, ensure that that CCB has been stopped on the chip before putting it back in the pool.
2007-03-20Mention Billionton Systems CFLT2-10B CF adapter here also.Jonathan Gray
2007-03-20Support for playing simple RIFF files (.wav) from Simon Effenberg, savarUwe Stuehler
at schuldeigen de, with some tweaks from me. ok millert, tests ckuethe, liked by some disliked by nobody, but he's not even a real user :)
2007-03-20Remove duplicate definition of _POSIX_THREAD_ATTR_STACKSIZE and quietKurt Miller
build warnings noticed by david@. okay millert@ marc@
2007-03-20some updates/improvements for BUGS;Jason McIntyre
2007-03-20Fix crystal on/off routine (no more panic). Add two new routines toMarcus Glocker
set and clear the device's MAC filter.
2007-03-20Set umask to 077 when saving messages in the outbox (not enabledTodd C. Miller
by default). From veenhuizen at users dot sourceforge dot net
2007-03-20Move macppc to __HAVE_CPUINFO, and make locore.S and trap.c suitable forMark Kettenis
MULTIPROCESSOR. From now on sprg0 holds a pointer to struct cpuinfo, which is used to spill registers to during trap instead of the globals we used to use for that purpose. Bits and pieces from NetBSD. Help from drahn@ and art@. Tested by xsa@, thib@, miod@, gwk@, deraadt@. ok drahn@, gwk@
2007-03-20cut SEE ALSO down to a sane size;Jason McIntyre
2007-03-20steps on kernel building + modifying are already contained inJason McIntyre
config(8). instead of duplicating them here, just point people to config(8).
2007-03-20syncTheo de Raadt
2007-03-20document the args to the "timezone" command;Jason McIntyre
fixes documentation/5403: dst argument not defined in config manpage from James Hartley
2007-03-20Don't use newfs -d 0, it has been the default for over a decade now.Pedro Martelletto
Okay deraadt@.
2007-03-20various text improvements to make this page read better. also add inJason McIntyre
a little of afterboot(8)'s wisdom to prepare for my killing the kernel building section in afterboot(8) (which is here replicated);
2007-03-20swiss spellingTheo de Raadt
2007-03-20make synopsis/usage() a little nicer;Jason McIntyre
2007-03-20sync usage(); from Igor SobradoJason McIntyre
i also ripped some kerberos ifdefs out of usage(), which is ok biorn
2007-03-20An complete lack of peer review before this is commited means it gets pulled.Theo de Raadt
No exceptions.
2007-03-20sort options; sync synopsis and usage();Jason McIntyre
from Igor Sobrado
2007-03-20- let synopsis and description agree for -fJason McIntyre
- sort FILES - +.Xr ssh-keyscan 1 , from Igor Sobrado
2007-03-20remove -K from usage();Jason McIntyre
2007-03-20-l requires an argument; from Igor SobradoJason McIntyre
2007-03-20further clean usage(); ok toddJason McIntyre
2007-03-20Use aml_val2int() instead of accessing v_integer directly.Michael Knudsen
`sort of ok' marco (before lock)
2007-03-20Be sure to reset ata_xfer flags for all PACKET transfers, otherwise weChristopher Pascoe
could pick up a previous ATA_F_POLL from a previous non-data command.
2007-03-20Remove unused ALIGN32 macro. It wouldn't work anyway, sinceDeanna Phillips
ALIGNBYTES32 has been gone for years. ok art
2007-03-20wow, i suck. two fixes by Matthew R. Dempsey for my dumb mistakes.David Gwynne
2007-03-20add missing FLUSH_CACHE commands.David Gwynne
2007-03-20Document some routines by pointing to the refering specs URL.Marcus Glocker
2007-03-20Basic FLUSH CACHE support.Christopher Pascoe
Note that the ATA spec says we're should retry after error until we see no more errors. This is not (yet) implemented.
2007-03-20Use ALLOCNOW flag when creating PRDT dmamap, otherwise it could fail duringChristopher Pascoe
error handling.
2007-03-20Tag ATAPI transfers that have no data phase correctly, otherwise the commandChristopher Pascoe
isn't sent to the device.
2007-03-20Our timeout and error handlers complete the commands for us, so we shouldChristopher Pascoe
always return ATA_COMPLETE in the polled transfer case. Also, respect the passed in timeout value when polling.
2007-03-20typo in commentTodd T. Fries
ok jmc@
2007-03-20commit the rest of the jmicron ids. jsg has been trying to get me to addDavid Gwynne
these since last year, but i didnt see the point till the code would be useful anywhere.
2007-03-20Oops, remove some unused variables and unmangle a command name.Christopher Pascoe
2007-03-20zap unused variable.Thordur I. Bjornsson
ok pedro@
2007-03-20Cap the device size we present to 2TB, just in case someone attachesChristopher Pascoe
something really big. The SCSI layer isn't yet ready for it.
2007-03-20Move common completion handling into ata_exec itself. Removes a double freeChristopher Pascoe
in the inquiry error paths, as the HBA will have already completed the ata_xfer with an error. Reminder and ok dlg@
2007-03-20augment the -q option, now if specifed with -c (checklist)Thordur I. Bjornsson
it will only print out the failed cases. OK millert@
2007-03-20Add support for ATA PACKET commands. This should make ATAPI cdrom drives,Christopher Pascoe
etc, just work.
2007-03-20Read the whole SPROM content with a single routine to a own sprom struct.Marcus Glocker
For those people who have reported about broken MAC address at attach time, this should fix the problem.
2007-03-20Catch failed commands and copy the error taskfile back to the ata_cmd,Christopher Pascoe
so that atascsi can deal with it.
2007-03-20move ata command definitions from atascsi.c to atascsi.hDavid Gwynne