summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-05-02do not always delay log initialization, when no configuration file isPierre-Yves Ritschard
present, which is the most common use of rtadvd, it would otherwise always print messages to the console though the situation is valid. this fixes a regression introduced with the new logging code. ok rainer@, todd@, fgsch@
2008-05-02syncTheo de Raadt
2008-05-01correct attach messagesTheo de Raadt
2008-05-01In the main loop, do not call wait() if there is no child process yet;Miod Vallat
misinterpreting the ``returned'' status could lead to segfauts, as reported by ``Filth'' (hygdrasil, gmail dot com) ok deraadt@
2008-05-01Be carefull not to read away the target entry when encounteringOtto Moerbeek
deleted files after a seekdir(); testcase produced by mbalmer@; fix with and ok mbalmer; ok millert@
2008-05-01.Xr memc(4)Xavier Santolaria
2008-05-01memc(4) bits. OK drahn@.Xavier Santolaria
2008-05-01Sync hpux_sendsig() behaviour with native sendsig(): let malloc fail andMiod Vallat
sigexit the process in this case.
2008-05-01regenMiod Vallat
2008-05-01The built-in frame buffer in models 362 and 382 actually comes in differentMiod Vallat
flavours. Add another frame buffer ID to recognize it, so that it gets skipped correctly. I am quite sure it has an SGC PROM in addition to the DIO PROM, but I don't have the hardware to check...
2008-05-01Don't forget to bus_space_unmap() after probing for a com chip.Miod Vallat
2008-05-01spl0() is not your friend, use splx() instead.Miod Vallat
2008-05-01Implement a nop IPI to signal other CPUs.Mark Kettenis
ok drahn@
2008-04-30regenBrad Smith
2008-04-30Add the id for the Marvell 88E3016 10/100 PHYBrad Smith
2008-04-30regenBrad Smith
2008-04-30Add E1000 PCI ids for another ICH9 variant, ICH10's and 82574L.Brad Smith
2008-04-30* add xetcXX.tgz support to sysmerge and handle binary filesAntoine Jacoutot
* update man page accordingly * several cleanups in the process: - smaller sendmail configuration files diff check - remove a condition that would always evaluate to true - define AUTOMODE to a value we can reuse later - tell user when installing a file automatically - better check for src directory validity - remove full PATH to some commands to be consistent testing from several man pages bits ok jmc@ "go ahead" jasper@, ok sthen@ pyr@
2008-04-30Spacing.Mark Kettenis
2008-04-30don't stop both play and record in envy_halt_input() ad envy_halt_output()Alexandre Ratchov
ok jakemsr@
2008-04-30Fix typo in last commit.Mark Kettenis
2008-04-30Initialize randseed to 1.Mark Kettenis
2008-04-30add two missing prototypes.Federico G. Schwindt
2008-04-30fix serial console handling on amd64. currently only glass console everDavid Gwynne
works, even if the boot loader is configured to use serial console. after the changes jsing and i made, the initial probe of the serial port was failing since the default base addres for the port is invalid. cos of that the kernel would only ever consider the glass console for use. this fixes it by reprobing the serial port if we get any config for it from the boot loader. advice on aesthetics from miod@ advice and ok from kettenis@
2008-04-30Correct MPLS output of route -n show.Esben Norby
ok claudio@
2008-04-30default to rsa (protocol 2) keys, instead of rsa1 keys; spotted byDamien Miller
larsnooden AT openoffice.org
2008-04-30Drop all MPLS packets when MPLS is not enabled.Esben Norby
Discussed with claudio@ dlg@ laurent@ Remember to enable MPLS vith sysctl(8). sysctl -w net.mpls.enable=1 ok claudio@ dlg@ laurent@
2008-04-29Remove duplicate psignal(3) and sys_siglist definitions. signal.hKurt Miller
is the correct place for them and nothing gets them from here in base/xenocara/ports. no objection millert@ okay kettenis@
2008-04-29Make sure sys_signame and sys_siglist are wrapped in __BEGIN_DECLS.Mark Kettenis
Needed to tell pedantic C++ compilers these symbols have 'C' linkage. ok kurt@
2008-04-29Attempt to locate an ELF header and symbol table directly after the kernel.Joel Sing
If it exists assume that the boot loader has provided a pointer to the end of the symbol table. If it does not exist fall back to the previous behaviour and expect that pointers to the symbol table have been provided directly after the kernel. ok miod@
2008-04-29Change sis_chip_map() to use pci_find_device() as the originalJonathan Gray
NetBSD code it was based on did/does, now we have it. This makes detecting sis 96x work properly without having to do silly things like adding host bridges in the list. Of course we wouldn't be in this mess in the first place if sis designed their chips properly instead of reusing the same pci id. Add 964/965 devices while here. Tested by todd@ on a machine with 965.
2008-04-29garbage collect two unused fields in struct mm_master; ok markus@Otto Moerbeek
2008-04-29syncTheo de Raadt
2008-04-29simplify a sentence;Jason McIntyre
2008-04-29enable km(4); ok deraadtConstantine A. Murenin
2008-04-29km(4) manual pageConstantine A. Murenin
2008-04-29New km(4) driver for AMD Family 10h Processors (Phenom, Opteron Barcelona etc);Constantine A. Murenin
ok deraadt
2008-04-29remove noise, (debug print).Dale Rahn
2008-04-29PIR is not defined to be a writable register, do not use it.Dale Rahn
2008-04-29Spin up secondary CPUs on more systems.Dale Rahn
2008-04-29spillstk and ddbstk need to be per cpu. Found by kettenis@Dale Rahn
2008-04-28Convert IPL_TTY into IPL_SOFTTTY when establishing soft interruptsi, like weMark Kettenis
do on other platforms.
2008-04-28Do not alter mode parameter in vesafb_set_mode(), since we might ask for aMiod Vallat
non-linear-graphics mode; found the hard way by Yusuke Baba (babayaga1 , y8 dot dion dot ne dot jp), thanks for the report.
2008-04-28Rename IPL_SOFTSERIAL to IPL_SOFTTTY. Sprinkle some KNF while I'm there.Mark Kettenis
2008-04-28Rename IPL_SOFTSERIAL to IPL_SOFTTY and rename the associated symbols.Mark Kettenis
Remove IPL_SERIAL since it is unused. ok krw@, weingart@, deraadt@
2008-04-28Teach sysctl about mpls.Esben Norby
Claudio did all the code, I'm just comitting it... ok claudio@ laurent@ dlg@
2008-04-28It is now possible to enter static MPLS routes into the kernel.Esben Norby
It is still not possible to set the desired opration for an entry. ok claudio@ laurent@ dlg@
2008-04-28Add the ATI SB700 and NVIDIA MCP7B chipsets.Brad Smith
2008-04-28Sync PCI ids.Brad Smith
2008-04-28regenBrad Smith