summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-07-29Do not fail KDENABIO and KDDISABIO ioctls on non-i386 platforms, this allowsMiod Vallat
older X servers to run; ok matthieu@
2006-07-29remove gnu stuff from the 'tags' target.Thordur I. Bjornsson
ok miod@
2006-07-29ALIGNED_POINTER is always defined.Miod Vallat
2006-07-29Do not redefine ALIGNED_POINTER, it comes from <machine/param.h>Miod Vallat
2006-07-29Add regression test for files with lots of keywords.Ray Lai
OK xsa@
2006-07-29here's the real reason i removed the if_arc network goo: i wanted its name.David Gwynne
this is the start of a driver supporting the areca raid controllers. so far it probes, attaches, establishes the interrupt, allocates all the necessary memory and queries the firmware for operating params. the io path is yet to be done. that is going to be hard to do since i dont have any sata disks to plug into it. thanks go to Billion Wu and Erich Chen from Areca for their assistance. ok deraadt@
2006-07-29regenDavid Gwynne
2006-07-29more areca raid controller idsDavid Gwynne
2006-07-29syncTheo de Raadt
2006-07-29Zap a couple of unused defines - SID_ANSI_SCSI2 and SID_ANSI_SCSI3.Kenneth R Westerback
2006-07-29The version field of scsi_inquiry_data is not a simple numeric valueKenneth R Westerback
that specifies the version of SCSI being supported. Even the ANSI part that we use is complex. 4 means 2, 5 means 3 and 6 means 4. Translate and use the value correctly. Fixes SCSI5 and SCSI6 in dmesg. And properly protects SCSI2 devices from getting SCSI3 commands. "seems like an elegant solution to me" millert@ ok dlg@ marco@
2006-07-29only enter for armishTheo de Raadt
2006-07-28crank the OpenBSD version to 4.0; Opera 9.0 on OpenBSD verified by sturm@David Krause
2006-07-284KB buffer on the stack, and would you like fries with that?Miod Vallat
2006-07-28Only stop processing prebind deletion if an actual error occurs.Dale Rahn
2006-07-28Document the recent VAX frame buffer changes, especially the way smg(4)Miod Vallat
attaches (or refuses to) now.
2006-07-28Driver for the color frame buffer option on VAXstation 3100 models 3x/4x.Miod Vallat
Still a few rough edges to polish, but nevertheless usable; 4bpp flavour untested.
2006-07-28Better dmesgMiod Vallat
2006-07-28KNFMarco Peereboom
2006-07-28Only read 1 sensor at a time instead of all of them. This should helpMarco Peereboom
systems that have a burst of activity every 10 seconds. Also lower the polling frequency from 10 to 5 seconds. ok jordan@
2006-07-28Fix BT interface by waiting for BMC_BUSY on writes.Jordan Hargrave
Found and ok marco
2006-07-28make dmesg printing look a little bit nicer.Brad Smith
2006-07-28regenBrad Smith
2006-07-28add Intel IOP333, 5000 and 6321ESB PCI ids.Brad Smith
2006-07-28remove port startup code, it's all moved to the respective portNikolay Sturm
ok deraadt, toby, pedro, david
2006-07-28permit synchronous mountsNikolay Sturm
ok pedro
2006-07-28Pass the end of the symbol table to the kernel.Mark Kettenis
2006-07-28Use the correct major for /dev/pci (instead of giving it the same majorMark Kettenis
as /dev/raid). ok drahn@
2006-07-28Make option USER_PCICONF work.Mark Kettenis
ok drahn@
2006-07-28syncTheo de Raadt
2006-07-28no man page for nowTheo de Raadt
2006-07-28should install into /usr/mdec/Theo de Raadt
2006-07-28enter bootTheo de Raadt
2006-07-28regenBrad Smith
2006-07-28move the Siemens vendor id to the right location.Brad Smith
2006-07-28First stab at an armish bootloader. It will load /bsd from the drive in theMark Kettenis
upper slot of the Thecus n2100. Glued together from bits from the NetBSD cobalt and evbarm ports.
2006-07-28regenBrad Smith
2006-07-28add some Broadcom, NVIDIA and Ricoh PCI ids.Brad Smith
2006-07-28do not bother playing tag with the PCI_COMMAND_STATUS_REGMark Kettenis
tested by jolan@, ok brad@
2006-07-28Simplify autoneg code a bit. Tested on a few sk(4)'s and an axe(4).Brad Smith
2006-07-28another Marvell Gig PHY.Brad Smith
2006-07-28regenBrad Smith
2006-07-28another Marvell Gig PHY.Brad Smith
2006-07-28Make tftpd atoi() free.Marcus Glocker
ok claudio@
2006-07-28factor out the code to build bgp messages, ok claudio a long time agoHenning Brauer
2006-07-28avoid printing the server built dateHenning Brauer
2006-07-28avoid printing server built date, we set that to "unknown" anywayHenning Brauer
leave the function there of course, it's part of the API
2006-07-28A vulnerability has been reported in Apache HTTP Server, which potentially canHenning Brauer
be exploited by malicious people to compromise a vulnerable system. The vulnerability is caused by a off-by-one error in mod_rewrite and can be exploited to cause a one-byte buffer overflow. http://secunia.com/advisories/21197/ report "Alexey E. Suslikov" <cruel@texnika.com.ua>, the obvious fix mailed in by Stuart Henderson <stu@spacehopper.org>
2006-07-28Explain the effect of the --export-dynamic link option on the visibilityKurt Miller
of the executable's symbols as well as improve the visibility paragraph a bit. okay drahn@
2006-07-28Remove $Log$ check from keyword expansion test, which is the onlyRay Lai
keyword we don't do yet. Now we can enable the test. OK niallo@