summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-12-10typo; Alexander_Bluhm@genua.deTheo de Raadt
2006-12-10Add missing argument to a DPRINTF call.Claudio Jeker
2006-12-10Read/write device sectors rather than assuming sector size ==Kenneth R Westerback
DEV_BSIZE. Simply extract/insert the desired MBR from/into the first DEV_BSIZE bytes of the sector. Makes fdisk work with devices having a sector size different from DEV_BSIZE (512 bytes). e.g. 2048 byte sector MP3 devices. Original diff from weingart@. ok pedro@ deraadt@ weingart@
2006-12-10Make sure the bit collecting is restarted after signal loss.Marc Balmer
2006-12-10Do not attempt to access scsi_xfer fields after scsi_done() has been invoked.Miod Vallat
2006-12-10Delay two seconds after board reset before trying to probe scsi devices.Miod Vallat
2006-12-10Allow ``flags 0'' to work to disable DMA for si(4) and sw(4) - it would getMiod Vallat
ignored previously.
2006-12-10restart collecting bits immediately after a parity error, i.e. use the frameMarc Balmer
immediately following the corrupt one; there is no no need to skip it by waiting for the next minute gap and the sensor value has valid data one minute earlier than before.
2006-12-10Fix typo in intersil clock programming.Miod Vallat
2006-12-10Re-arm signal loss detection only after we received a bit, not in itself. ThisMarc Balmer
prevents the signal loss function from being called repeatedly when we have no signal.
2006-12-10Faster synchronization after an unexpected minute gap.Marc Balmer
Only look at the skew value if it is != 0. Remove some dead code.
2006-12-10trivial change: comparing versions on a non-existent config is not a goodMarc Espie
idea...
2006-12-10In ip6_output(), make sure ia is initialized before it is used.Miod Vallat
2006-12-10regenDimitry Andric
2006-12-10Add ATI RS200M AGP.Dimitry Andric
2006-12-10USR5423 and Sandberg. -mojMats O Jansson
2006-12-09Add USR5423. -mojMats O Jansson
2006-12-09Better describe the magic done by umass_fixup_sony(), okay krw@Pedro Martelletto
2006-12-09sort the sets to make sure that shared libraries are early in the sets, toTheo de Raadt
avoid various "interrupt while upgrading and you are hosed" problems. prodded by drahn, this will save kitella from doing 6 hour drives, ok espie
2006-12-09Add quirk for Sony DSC-W50 (which is UFI, not SCSI) and rearrangePedro Martelletto
umass_fixup_sony() a bit while there, okay krw@
2006-12-09full stoppage;Jason McIntyre
2006-12-09Do not make sun terminal emulation selected by the wsemul_sun frame bufferMiod Vallat
attribute anymore; remove it and use option WSEMUL_SUN instead, which gets added to all sparc* kernels. While there, do not compile vt100 emulation on sparc* kernels, this saves 16+ KB of text. ok deraadt@
2006-12-09better synopsis/usage and a couple wee fixes;Jason McIntyre
mostly ok beck
2006-12-09jsg worked a lot in here tooTheo de Raadt
2006-12-09Mention another ZD1211B, MSI US54SEJonathan Gray
Reported by Simon Kuhnle on tech@
2006-12-09syncTheo de Raadt
2006-12-09reorg code some more:Marc Espie
- handle most version number requirements. - handle uninstalled packages correctly. - process options in the same order as the gnu pkg-config. - sanitize status code returns. - set up printerr the same way gnu pkg-config does. tested on xenocara by matthieu@ Still missing: actual --static implementation, and possibly some other details...
2006-12-09make spamdb take multiple add/delete arguments, thus making itBob Beck
much easier to do bulk add/deletes without opening and locking the database for each one. testing by scads of people on tech@ Ok deraadt@ jmc@
2006-12-09note where the new driver came fromMartin Reindl
2006-12-09Improvements, from jmc.Marc Balmer
2006-12-09Shorten. And use the correct device name.Marc Balmer
2006-12-09tweak the text on deprecated functions, after some help from tom;Jason McIntyre
2006-12-09various tweaks;Jason McIntyre
2006-12-09various tweaks; my apologies to itojun for forgetting toJason McIntyre
send him feedback for these
2006-12-09The call sign is DCF77, not just DCF.Marc Balmer
2006-12-09Be consistent with writing frequencies, it's n kHz, not nKHz. The DCF77Marc Balmer
transmitter uses 77.5 kHz.
2006-12-09some indent and a little cleanup;Jason McIntyre
2006-12-09standardise section headers;Jason McIntyre
ok deraadt mbalmer
2006-12-09Enable udcf(4).Marc Balmer
ok deraadt
2006-12-09grammar fixes from raphael langerhorst;Jason McIntyre
2006-12-09sigh, split the bus space mapping and interrupt hookup apart so i canDavid Gwynne
reset the controller and clear interrupts off it before doing the hookup.
2006-12-09reset the hba and set the enable bit.David Gwynne
2006-12-09figure out which revision of ahci we're trying to use and print it out.David Gwynne
if we don't know about it, bomb out.
2006-12-09split the mapping of the pci resources out of the main attach funcDavid Gwynne
2006-12-09add wrappers for safe access to the register space. stolen from arc (whichDavid Gwynne
stole them from mpi).
2006-12-09add macros for debug shizzDavid Gwynne
2006-12-09bit definitions for the cap and ghc registersDavid Gwynne
2006-12-09syncTheo de Raadt
2006-12-09registers for hba controlDavid Gwynne
2006-12-09the start of a driver for ahci controllers. this does nothing but map theDavid Gwynne
register space and hook an interrupt up for the controller i have, but it is going into the tree so i can work on it. commit early, commit often