summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-12-24clear RUNNING here to do a full init.Brad Smith
2005-12-24add an argument to cvs_chdir() which enables or not the removalXavier Santolaria
of the directory we just chdir'd to. Useful when the function fails especially for the server mode and its temporary directory. This way it's not left behind on exit. ok joris@.
2005-12-24error message consistency in fatal();Xavier Santolaria
2005-12-24Very basic sample ipsec.conf, more to come. Has been demanded by deraadt@ forHans-Joerg Hoexer
a long time, but i'm a bloody slacker...
2005-12-24bzero the pfd array before setting it up and calling poll because on errorClaudio Jeker
(e.g. EINTR) poll() will not update the pfd array (copyout) and so the old revents are used and results in a blocking parent process. OK dlg@
2005-12-24Don't use bzero(&pfd, sizeof(pfd)); pfd is an array so bzero(pfd, sizeof(pfd));Claudio Jeker
is better. Discussed on icb.
2005-12-24regenRobert Nagy
2005-12-24Add Logitech QuickCam Zoom support.Robert Nagy
A quirk is needed to prevent attaching to uaudio(4) instead of ugen(4), because of the internal microphone. ok jsg@
2005-12-24mips64 support code for librthread (_atomic_lock yanked from existingMiod Vallat
libpthread code).
2005-12-24establish interrupt at IPL_TTY instead of IPL_HIGH, so it doesn'tDamien Miller
reenter comstart; pr #4947 and fix from Kudo Takashi, ok deraadt@
2005-12-24remove useless cvs_buf_alloc() failure checks;Joris Vink
2005-12-24we should be calling cvs_vlog(); to at least get some decent output;Joris Vink
2005-12-24- support for -n -N and -t;Joris Vink
- check for path truncation; - do not pollute flags being passed to rcs_open() with local flags; - fix rcs initialization stuff;
2005-12-24eliminate some code duplicated in privsep and non-privsep paths, andDamien Miller
explicitly clear SIGALRM handler; "groovy" deraadt@
2005-12-24Claim a bit more memory such that we can load bsd.rd.Mark Kettenis
tested by many; ok deraadt@
2005-12-23less mark up for -c;Jason McIntyre
2005-12-23sdata should be signedTheo de Raadt
2005-12-23build a cacheing-read api internally, so that we can be even more stingyTheo de Raadt
with i2c cycles. as well, this will let us basically now write if/else code for basically free. much easier; tested by kettenis and pval
2005-12-23Prototypes live in <search.h>Todd C. Miller
2005-12-23better way to probe winbonds, with kettenisTheo de Raadt
2005-12-23typoTheo de Raadt
2005-12-23oops, 0x31 is as99127fTheo de Raadt
2005-12-23not quite becoming a nightmare, but we are getting there..Theo de Raadt
2005-12-23correct ic_release_busTheo de Raadt
2005-12-23m88k suppport code for librthread.Miod Vallat
2005-12-23vax support bits for librthread (need the child_return() fix just commited).Miod Vallat
2005-12-23Make sure child_return() returns with carry clear and r0 = r1 = 0.Miod Vallat
2005-12-23m68k support code for librthread; atomic lock routine borrowed from theMiod Vallat
existing libpthread code.
2005-12-23encryption key should be 160 bits, not 128;Jason McIntyre
from will h. backman; ok hshoexer
2005-12-23Make cd_load_toc() take an address mode parameter, clean up a bit.Kenneth R Westerback
Add a check for ending_track < starting_track before calculating size of TOC to read. Tested by mjc@
2005-12-23set both ia_name and ia_compatTheo de Raadt
2005-12-23another check registerTheo de Raadt
2005-12-23smsc 47m192 has a monitor like the adm1025Theo de Raadt
2005-12-23next generation. grok a few more chips, but also change the logic toTheo de Raadt
correct locking, etc, etc, and even try a 16-bit register read just to compare against if we fail to match..
2005-12-23- no need to use .Bk/.Ek after every optionJason McIntyre
- make -s more consistent w/ rest of the page
2005-12-23fill in the blanks for -r;Jason McIntyre
from dd@freebsd, -r1.15, but synced with our traceroute(8) -r; ok djm claudio
2005-12-23adjust the description of -r to that in freebsd's traceroute6(8),Jason McIntyre
since it's more informative; ok djm claudio
2005-12-23- sync the description of -e w/ synopsisJason McIntyre
- simplify the description of -I - note that -I is only available if support compiled in, and that it isn't by default feedback/ok djm@
2005-12-23syncTheo de Raadt
2005-12-23Remove unnecessary #ifdef MROUTING blocks. OK brad@ markus@Claudio Jeker
2005-12-23Support Nintendo Wi-Fi USB Connector, noticed in Linux rt2570 driverJonathan Gray
and verified against windows driver.
2005-12-23regenJonathan Gray
2005-12-23Nintendo Wi-Fi USB ConnectorJonathan Gray
2005-12-23grok some more devicesTheo de Raadt
2005-12-23new i2c drivers...Theo de Raadt
2005-12-23send a command to start scanning...Theo de Raadt
2005-12-23work in progress towards "identifying" various devices on the i2c bus.Theo de Raadt
this will later on hopefully be table driven, but first I have to read the 100 or so data sheets and start coding up detection rules..... bleah
2005-12-23move midi attachment for umidi down to the MIDI section.Brad Smith
2005-12-23add emu(4) and missing midi attachment for eap(4).Brad Smith
2005-12-23for reasons that do not make any sense whatsoever, _rthread_alloc_stackTed Unangst
must be called with the thread_lock held, or we crash in rfork_thread