summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-04-13fix possessive; ok djm@Kevin Steves
2009-04-13document -w; ok espie wiz@netbsdJason McIntyre
2009-04-13Convert macros to functions to reduce kernel memory usage.Bret Lambert
In snaps for a while (way too long, according to deraadt@)
2009-04-13protypes in sndio.h make reference to struct pollfd; applicationsAlexandre Ratchov
that don't use sys/poll.h, wont compile with gcc2. Fix this by declaring the pollfd structure spotted by and ok deraadt
2009-04-13Add myself to AUTHORS list, as suggested by Thomas.Marc Espie
Always cool to see email addresses @netbsd/@openbsd in the same program ;)
2009-04-13A few tweaks:Marc Espie
- display only section headers in warning messages if -w (asked by jmc@) - better fix option: have process_line return the processed line, and use that info. - return proper line for comments (noticed by Thomas Klausner) - let more code run always, only display warnings when wanted - sorting of see also should be case-insensitive (noticed by jmc@)
2009-04-13Explicitly test whether the SUNW,start-cpu-by-cpuid interface is availableMark Kettenis
instead of assuming it is. Makes sure we actually spin up the secondary CPUs on Serengeti machines with certain firmware revisions. Tested by Christophe Latt.
2009-04-13Don't try to read or remove a non-existant /tmp/hosts file. This canKenneth R Westerback
happen if no interfaces are configured during an install. Noticed by jsing@. Diff from jsing@, only slightly tweaked.
2009-04-13krw says comments only stripped when alone on a lineTheo de Raadt
2009-04-13Print the sets list in 3 columns. Some pathological case handling forTheo de Raadt
extremely siteXX-stupidlonghostname.tgz files worked out with krw The shell script output is now substantially shorter than it was before and blind people will appreciate this in our next release.
2009-04-13use the new ftp -T title mode to compress the install script outputTheo de Raadt
a bit more (and it is a lot prettier, too) ok krw
2009-04-13add a "-T title" option to ftp; this is is used in progress bar mode toTheo de Raadt
show which filename is being used. ok krw, mdoc repair from jmc
2009-04-12document that no leading whitespace is permitted between the option andOkan Demirmen
argument if the argument is deemed to be optional ('::'). feedback and ok jmc@ and millert@
2009-04-12regenMark Kettenis
2009-04-12regenMark Kettenis
2009-04-12Add /dev/mdesc.Mark Kettenis
2009-04-12Implement /dev/mdesc, a device to read the machine description on sun4vMark Kettenis
(virtual) machines.
2009-04-12restrict YP UID and GID rangesIngo Schwarze
from NetBSD and Debian via ajacoutot@ tweaks and documentation updates by myself with help from jmc@ OK ajacoutot@ jmc@ "move ahead" deraadt@
2009-04-12Interrupt support for IOC3 and its subdevices (currently limited to theMiod Vallat
SuperIO part, the Ethernet part needs a whole driver); kernel now boot single user (or bsd.rd). Joint work with jsing@
2009-04-12Add code to prevent the MI pci code to cause IOC3 devices to freeze andMiod Vallat
hog the bus, and also to fake a valid interrupt register. The IOC3 device is not a PCI device at all, but pretends to be one. Except its own registers overlap the PCI configuration space, and some flavours do not support disabling memory space in the control register, violating the PCI specs. Fun.
2009-04-12Needs <machine/atomic.h> to compile.Miod Vallat
2009-04-12Get com console global variables from <dev/ic/comvar.h> instead of declaringMiod Vallat
them manually.
2009-04-12Better constraints on the temporary register in atomic_{set,clear}bits_int.Miod Vallat
2009-04-12run make depend for kernel, too; ok miodTheo de Raadt
2009-04-12need nvram to link; ok miodTheo de Raadt
2009-04-12Code assumed the certificate name to always match the interface name, evenGilles Chehade
when a certificate name was explicitely provided. This would cause imsg to fatal() because with some configurations, it would look for the wrong name in the ssl tree and would fail to find the proper cert. issue spotted by Gregory Edigarov <gregory.edigarov@gmail.com>, I found the fix just a few minutes ago when I succeeded to reproduce the issue...
2009-04-12When runner_check_loop() detects a mail loop, remove the envelope. This isGilles Chehade
only half of the problem solved, we need to generate a mailer daemon too. This fixes a bug in my smtpd where it would try to schedule a message, detect that it is a loop and not schedule it, then trying again at next queue walk ...
2009-04-12Remove erroneous spaces.Joel Sing
From brad
2009-04-12Move code handling Machine Descriptions out of the cbus(4) driver.Mark Kettenis
2009-04-12regenMark Kettenis
2009-04-12The Intel 21154 was incorrectly named S21154.Mark Kettenis
2009-04-12Tweak pattern used to select partition lines for display so theKenneth R Westerback
'# /dev/r...' line is not selected. Noticed by deraadt@
2009-04-12when an error occurs while delivering a message with an empty envelope as aGilles Chehade
sender, do not try to generate a mailer daemon message for it. fixes a crash experienced by sthen@ that I could reproduce
2009-04-12Better output (i.e. /etc instead of //etc)Antoine Jacoutot
mostly from and ok sthen@
2009-04-12Treat /etc/hosts the same way as /etc/group and /etc/master.passwd: makeAntoine Jacoutot
it impossible to install a virgin one over the currently installed one. from Mitja Muzenic, with a tweak
2009-04-12When in automode, sysmerge will now automatically install filesAntoine Jacoutot
that only differ by CVS Id (adapted from FreeBSD mergemaster) Ground work on the man page, from jmc@ * do not duplicate info * rewordings * move some stuffs around ok jmc@ sthen@
2009-04-12Run make depend before trying to build a RAMDISK kernel.Joel Sing
ok deraadt@
2009-04-12No longer need '-f' or '-p' when displaying layout. A few patternsKenneth R Westerback
missed the '# size offset ...' line at the top of the partition list.
2009-04-12When auto-allocating, check the size of the disk and displayKenneth R Westerback
offset/size information in MB if the disk is <10G, and in GB otherwise. '-p' will override this default.
2009-04-11Always display any mountpoint info available. Thus a simple -A willKenneth R Westerback
now show the planned mountpoint layout. ok deraadt@
2009-04-11Avoid dereferencing a null pointer when pf attempts to translate aJoel Sing
specifically crafted IP datagram. Problem noted by Sebastian Rother. ok henning@ mcbride@ sthen@
2009-04-11fix two typos; "fine" jmc@Ingo Schwarze
2009-04-11use MANPS only for BSDSRCDIR;Jason McIntyre
2009-04-11honor MSG_DONTWAITJacob Meuser
ok marc@, guenther@
2009-04-11in the old days compiler could not convert decimal constantsMartynas Venckus
accurately, hence the tricks in libm, using machine representation of constants. remove kludges and switch to use decimal constants, much simplifying the code. since, the compiler converts them accurately. generated values match on vaxfp discussed with millert@, and miod@ testing todd@, and myself ok millert@
2009-04-11uppercase Dt, ok jmcTheo de Raadt
2009-04-11Create extents for resource accounting on the root PCI bus and populate themMark Kettenis
based on the BIOS memory map.
2009-04-11readlabel() either errored out or returned a pointer to the globalKenneth R Westerback
'lab'. So there is no need for the return value. Just use &lab wherever it was used. No functional change. Slightly different version read ok to blambert@
2009-04-11Treat the list of auto-allocation partitions as a priority list andKenneth R Westerback
stop auto-allocation as soon as a partition can't fit. Eliminate the 'no space to allocate ...' messages.
2009-04-11There is no support for building multi-socket machines in AMD Family 11hMark Kettenis
processors, so the registers to configure addition HyperTransport links are absent. Don't try attaching addition pci busses on these processors to avoid probing non-existant registers.