summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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.
2009-04-11Update to sudo 1.7.1Todd C. Miller
2009-04-11- make legacy mode use sio_open(3) (sndio) APIJacob Meuser
- parse .au headers in legacy mode - support playback of ulaw and alaw encoded .au and .wav files in legacy mode ok ratchov
2009-04-11When inserting a new route add as downstream interfaces just the ones withMichele Marchetto
downstream neighbors or group members. ok claudio@
2009-04-11Show debug informations when a route is added and when a downstream routerMichele Marchetto
is added/deleted. Fix endianess issue in rt_match_origin(). ok claudio@
2009-04-11Add PnP ID for PCIe host bridge.Mark Kettenis
2009-04-10Where appropriate display the auto-allocation layout of the rootKenneth R Westerback
disk and ask if the installee wants to use it, edit it, or create their own custom disklabel. Most one-disk installs will not need to see fdisk or disklabel. i386 and macppc by me, adapted for others by deraadt@. ok deraadt@
2009-04-10tweak TABLES;Jason McIntyre
2009-04-10some improvements for the PACKET FILTERING section;Jason McIntyre
feedback (i.e. much tearing of hair) and ok henning
2009-04-10avoid Xr to self;Jason McIntyre
2009-04-10allow /usr/local to be up to 5MB in auto mode; ok krwTheo de Raadt
2009-04-10If the md_prep_disklabel routine sets AUTOROOT=y, then don't ask theKenneth R Westerback
user for input. Just plow ahead. ok deraadt@
2009-04-10Catch up with sparc changes (bcopy fix, struct cpuinfo, etc); still dies earlyMiod Vallat
with so-called ``external memory fault'' which cause I can't figure out.
2009-04-10Add EX_CONFLICTOK flag that allows an allocation to conflict with existingMark Kettenis
allocations, making sure that the union of all space is allocated. ok deraadt@
2009-04-10Don't blindly dereference a NULL pointer when the boot device is not known.Miod Vallat
2009-04-10Use soft interrupts to dispatch pcmcia device interrupts; this ensures theMiod Vallat
driver handlers get invoked at the right level. Parts from NetBSD.
2009-04-10Re-work '-A' so that it sets a flag that -E and -w use, and which willKenneth R Westerback
just display the auto-allocation plan otherwise. Don't overwrite any spoofed partitions, insert auto allocated partitions where we can. This is much more install script and weird architecture friendly. I'm talking about you, macppc. Many suggestions and code from otto@, feedback from many, cattle prod applied by deraadt@. ok deraadt@ "if it works for >8GB ... put it in" miod@ "to be clear, ok" todd@
2009-04-10generic soft interrupts support for sparc. Soft interrupt handlers are nowMiod Vallat
kept in a separate intrhand array, with their own enable bits so that soft interrupts sharing the same level only get invoked if really triggered. Inspired by NetBSD with significant changes. ok kettenis@
2009-04-10Explain the AUDIODEVICE env. variable similarly to how sio_open(3) does.Alexandre Ratchov
discussed with jmc@
2009-04-10'rm hosts' -> 'rm -f hosts', since we may have not configured anyKenneth R Westerback
interfaces and thus not have a hosts file to remove. Should eliminate annoying error messages noticed by jsing@.
2009-04-10don't use the AUDIODEVICE env. variable because sio_open(3) alreadyAlexandre Ratchov
does it. From Anathae Townsend <atownsend(at)nucleus.com>, thanks!
2009-04-10When deciding whether a sti@pci board is the console, compare all valid BARMiod Vallat
addresses against PAGE0 information, instead than only the BAR mapping sti region #0; on Visualize FXe, PAGE0 will point to another BAR and we would not recognize the display as the console device. Tested on Visualize FX4 (on C240), Visualize EG (on B1000) and Visualize FXe (on B2000).
2009-04-10Fix for PR6099, read/write of non-byte aligned IndexFieldJordan Hargrave
ok marco@
2009-04-10lrint, llrint, lrintf, llrintf for amd64. ok kettenis@, oga@Martynas Venckus
2009-04-10with the recent module-expand changes, we need to useJoris Vink
the correct repository path in Set-sticky and Clear-sticky otherwise we'll end up with stuff like src/bin/ls/src/bin/ls in CVS/Repository which pretty much breaks. noticed & ok sthen@
2009-04-10fix typos introducedTheo de Raadt
2009-04-10syncTheo de Raadt
2009-04-10resync libssl/libcrypto pod documentation - quite a few more pages andDamien Miller
MLINKS; feedback and ok jmc@