summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-05-21Bye bye pccomMiod Vallat
2008-05-21pccom is dead. long live com. Bring install script into the new world.Kenneth R Westerback
2008-05-21Switch i386 from pccom to com. Welcomed by many.Mark Kettenis
ok dlg@, jsing@, deraadt@
2008-05-21Print a specific message for non i2c attachments like macppcJonathan Gray
memc, in the situation where Apple cheaps out by having no SPD on integrated RAM.
2008-05-21KNF and readability changes.Marc Balmer
No binary changes.
2008-05-21Remove #ifndef SIN6_LEN/#else/#endif constructs.Marc Balmer
Suggested by djm a while ago. No binary changes.
2008-05-21Document and implement -U option, fix usage information for '-?'.Marc Balmer
Documentation corrections and spelling by jmc.
2008-05-21The default address family to be used is stored in a global variable. IfMarc Balmer
no options are given on the commandline, it is set to PF_INET. The configuration file parser did not use this variable in all cases, but used PF_UNSPEC for getaddrinfo/getnameinfo, leading to bogus error messages in some cases (but httpd operated as expected). Use the global variable instead of the hardcode PF_UNSPEC in the cases. Add a new commandline flag, -U, to set the default address family to PF_UNSPEC for ambigous directives. Discussed with sthen.
2008-05-20syncTheo de Raadt
2008-05-20Add multicast support to lii(4), with suggestions/changes from brad@.Joel Sing
ok brad@ dlg@
2008-05-20Change the OpenBSD/sgi boot loader so that we use libsa loadfile(), ratherJoel Sing
than rolling our own load functions. tested jasper@, feedback and ok miod@
2008-05-20remove Xr to non-existent page, rogue(6);Jason McIntyre
2008-05-20Fix last commit, it is rtrequest1() and not rtrequest(). Lucky me it seemsClaudio Jeker
that the code is ifdef-ed out all the time.
2008-05-20various fixes to tidy these pages up;Jason McIntyre
2008-05-20tweaks to bs(6):Igor Sobrado
- the document title (.Dt macro) should be BS, not BATTLESHIPS; - fix spacing on DeGaul's name - use .An/.Aq for Raymond's name and email address feedback by jmc@ ok jmc@
2008-05-20kill an Xr to a non-existent man page, ulimit(1);Jason McIntyre
2008-05-20add a small section for routing daemons; ok henning norbyJason McIntyre
2008-05-20regenBrad Smith
2008-05-20Add the NVIDIA Quadro FX 3500 id.Brad Smith
2008-05-20Remove stray "attach com at isapnp with com_isapnp".Mark Kettenis
ok miod@
2008-05-20Do not provide md mainbus(4) since there is an mi blurb.Miod Vallat
2008-05-20More references to obioMiod Vallat
2008-05-20This is sociic, not alipmMiod Vallat
2008-05-20cast pointer arithmetic to unsigned so we can behave correctly onFederico G. Schwindt
underflows. fixes fc -l 1 in my box where line is 1667511151. krw@ ok.
2008-05-19syncTheo de Raadt
2008-05-19unbreak tree by committing this bit that I missed from:Damien Miller
Fix sending tty modes when stdin is not a tty (bz#1199). Previously we would send the modes corresponding to a zeroed struct termios, whereas we should have been sending an empty list of modes. Based on patch from daniel.ritz AT alcatel.ch; ok dtucker@ markus@
2008-05-19Fix another typo.Mark Kettenis
2008-05-19tsec(4)Mark Kettenis
2008-05-19ipic(4)Mark Kettenis
2008-05-19Fix typo.Mark Kettenis
2008-05-19socpcic(4)Mark Kettenis
2008-05-19sociic(4)Mark Kettenis
2008-05-19obio(4)Mark Kettenis
2008-05-19Add tsec(4)Mark Kettenis
2008-05-19tsec(4)Mark Kettenis
2008-05-19A driver for the Three Speed Ethernet Controller (TSEC) found on theMark Kettenis
Freescale MPC8349E SoC platform. Still has some bugs, but it's getting there.
2008-05-19syncTheo de Raadt
2008-05-19bump (recalloc removal)Otto Moerbeek
2008-05-19remove recalloc(3); it is buggy and impossible to repair without bigOtto Moerbeek
costs; ok jmc@ for the man page bits; ok millert@ deraadt@
2008-05-19Add support for TSEC interrupts.Mark Kettenis
2008-05-19Permit compilation on 3 architectures which show that this diff wasTheo de Raadt
not tested on them. Older gcc's require decl before code, and this is supposed to be portable code in that sense.
2008-05-19Change all remaining MD uses of MALLOC and FREE into proper malloc() andMiod Vallat
free() calls; prodded by chl@, ok krw@
2008-05-19regenMiod Vallat
2008-05-19Add the Sun extended keys (L keys, volume keys) to the console mode layouts.Miod Vallat
2008-05-19do not leak memory if there is no power source. code is ifdef USB_DEBUG.Federico G. Schwindt
2008-05-19support -l (print fingerprint) in combination with -F (find host) toDamien Miller
search for a host in ~/.ssh/known_hosts and display its fingerprint; ok markus@
2008-05-19Fix sending tty modes when stdin is not a tty (bz#1199). PreviouslyDamien Miller
we would send the modes corresponding to a zeroed struct termios, whereas we should have been sending an empty list of modes. Based on patch from daniel.ritz AT alcatel.ch; ok dtucker@ markus@
2008-05-19SO_BINDANY for ipv6; ok djm@Markus Friedl
2008-05-19add divert-to/divert-reply; ok henning, pyrMarkus Friedl
2008-05-19try a few times before giving up while getting the device descriptor. ifFederico G. Schwindt
it fails, reset the port and try again. this seems to fix some devices that would punt with "device problem, disabling port" otherwise. from augustss@netbsd with some change as per discussion with theo. set the address before getting the descriptor. from peterbu at bemac dot com via netbsd kern/24716. tested by many.