summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Add two new options to cron(8), -J and -j. They allow to specifyyar2004-05-164-2/+50
| | | | | | | | | | | the maximum amount of time jitter for root and other users, respectively. Before starting a job, cron(8) will sleep a random number of seconds, from 0 to the amount specified. This can help to smooth down load spikes when a lot of jobs are to start at the beginning of a particular minute (e.g., the first minute of an hour.) PR: bin/66474 Submitted by: Dmitry Morozovsky <marck <@> rinet.ru>
* If the revision is 0, don't trust the length in the RSDP. Instead assumenjl2004-05-161-2/+7
| | | | an ACPI version 1.0 length.
* Read in the entire RSDP but only run the standard checksum over thenjl2004-05-161-7/+12
| | | | | | version 1 header. Add comments to explain what we're doing here better. Reported by: Alex Vasylenko <lxv@omut.org>
* Correct a typo in column header.mdodd2004-05-151-1/+1
| | | | | Submitted by: phk Obtained from: BSDCan
* Hook sysinstall to the build for powerpc.grehan2004-05-151-1/+1
|
* Mods for powerpc.grehan2004-05-154-20/+100
| | | | Submitted by: Suleiman Souhlal <refugee@segfaulted.com>
* Instead of scanning the entire lower 1 MB of RAM, only scan locationsnjl2004-05-142-29/+53
| | | | | | | | | | where the RSD PTR can actually occur. According to section 5.2.2 of the ACPI spec, we only consider two regions for the base address: 1. EBDA (0x0 - 0x3FF) 2. High memory (0xE0000 - 0xFFFFF) I don't know whether this fixes any actual problems but is more correct.
* Do not build sysintall for arm.cognet2004-05-141-1/+1
|
* Document the "files" directive.cognet2004-05-131-0/+4
| | | | Reminded by: jmg
* check if the null encryption is supported or not.ume2004-05-131-1/+11
| | | | | Requested by: bms Obtained from: KAME
* Make getprotobynumber() calls in FilterCheck conditional on the logdds2004-05-131-13/+43
| | | | | | | | | | | | | | | | | | | | | | levels by which they are used. On a typical production setting (no debug or filter logging) this will save an open/read/close system call sequence per packet, approximately halving the system overhead and reducing the overall overhead by 38%. dd bs=1k count=512 if=/usr/share/dict/web2 | ssh ppp-linked-host dd of=/dev/null # time original-ppp -nat -foreground connection Working in foreground mode Using interface: tun0 2.822u 2.404s 2:00.31 4.3% 392+496k 8+18io 3pf+0w # time new-ppp -nat -foreground connection Working in foreground mode Using interface: tun0 2.082u 1.173s 1:26.06 3.7% 379+450k 0+18io 0pf+0w MFC after: 3 weeks
* Fix a few glitches in my previous commit.cognet2004-05-112-3/+2
| | | | This makes config(8) WARNS?=6 compliant.
* Minor style issues.des2004-05-103-6/+6
|
* Add a new "files" directive, which allows to include a files.foo file directlycognet2004-05-096-28/+62
| | | | | from a kernel config file. Bump config version to reflect this change.
* Add 4.10 and 5.2.1 entries so that pkg_add -r fetches from the rightbmah2004-05-081-1/+3
| | | | | | | package sets. PR: 66251 Submitted by: eik
* Minor fixes for ia64 installs:jhb2004-05-074-2/+16
| | | | | | | - Don't look for partitions inside a FreeBSD chunk on ia64 when mounting the filesystems just before the chroot and install. - Write entries out to /etc/fstab for filesystems that aren't inside a FreeBSD chunk, but are a top-level chunk under the disk.
* mdoc(7) cleanup for the last commit to this file.simon2004-05-041-3/+10
| | | | OK'ed by: bmilekic
* Bump the copyright year since I forgot last time.smkelly2004-05-031-1/+1
|
* Ammend jail(8) man page to explain new sysctl for raw-socketsbmilekic2004-05-031-0/+7
| | | | | | inside jails, Christian's last submission. Submitted by: Christian S.J. Peron <maneo@bsdpro.com>
* Check that specified in the command line path is actually a directory,sobomax2004-04-301-0/+9
| | | | otherwise we are risking to coredump later on.
* Update comments to reflect changes made by phk. Also no longer needsmkelly2004-04-281-5/+2
| | | | <sys/sysctl.h>.
* mdoc(7) janitor:simon2004-04-251-2/+2
| | | | | - Sort SEE ALSO by section number. - Remove redundant ','.
* mdoc(7) janitor:simon2004-04-251-9/+9
| | | | | | | | - Remove EOL whitespace. - Expand contracted words. - Correct usage of .Fl macro. - Use complete argument to -width. - Remove redundant ','.
* Remove the requirement that the "discard" service be defined in thebrooks2004-04-201-1/+5
| | | | | | | services database. Now only services that are actually used need to be defined. Submitted by: ume
* While walking over the list of interfaces obtained from getifaddrs(3),joerg2004-04-201-4/+40
| | | | | | | | | | | | | | | rarpd clobbered any AF_INET information already configured for a given interface name, so interfaces with more than one IP address made rarpd listen only for the last address out of all IP aliases. I changed this, so that AF_LINK information is always collected first (to ensure the interface name gets its link-layer address associated), but while looking for AF_INET addresses, the configuration is cloned if there has already been one IP address seen for that interface name. Thus, rarpd now effectively listens on all subnets. MFC after: 1 week
* Fix a typo.joerg2004-04-201-1/+1
|
* Update number of portsmurray2004-04-191-2/+2
|
* Instead of using a static, check for the FADT revision before using it.njl2004-04-181-12/+20
| | | | | | This fixes a bug where acpidump -d crashed (but not -t -d). Submitted by: Alex Vasylenko <lxv@omut.org>
* Add a missing memcpy (*blush*!)brian2004-04-171-4/+8
| | | | | Suggested by: James P Scully <scully@CS.Arizona.EDU>, Perianayagam Somasundaram <somu@CS.Arizona.EDU> MFC after: 10 days
* o split a sentence to make it more understandablebrueffer2004-04-161-2/+8
| | | | | | | | | o mention that the acctfile has to exist for accton to work [1] o add reference to acct.5 PR: 65071 [1] (slightly modified) Submitted by: Marc Silver <marcs@draenor.org> X-MFC after: re approval
* Install the MIBs and the definition file to the new location underharti2004-04-151-2/+2
| | | | | | /usr/share/snmp. Noted by: bmah
* Use a MANFILTER to patch the man pages to point to the right path.harti2004-04-142-0/+8
| | | | Noted by: phk
* Put the name of the module first in the list of all .Nm calls withharti2004-04-141-0/+1
| | | | | argument. This makes the output of calling .Nm without an argument more senseful later on.
* Compare with 0 if comparing an integer, not with NULL.harti2004-04-141-1/+1
|
* Move the SNMP MIBs and tree definitions from /usr/share/bsnmp toharti2004-04-141-2/+2
| | | | | /usr/share/snmp. This mirrors the use of /usr/local/share/snmp and makes also more sense when non-bsnmp-specific MIBs go in.
* Fix examples.fjoe2004-04-132-4/+4
|
* Use ifconfig(8) for setting common 802.11 parameters.fjoe2004-04-134-386/+16
| | | | Submitted by: Stanislav A. Svirid <count@riss-telecom.ru>
* Massive cleanup of the code removing global variables toluigi2004-04-131-206/+199
| | | | | | | | pass function arguments and results. Hopefully no functional changes except fixing a couple of bugs which could cause endless loops if an ioctl() on an interface would fail.
* Back out previous commit, it was unintentional.luigi2004-04-131-1/+1
| | | | | | Keep WARNS at 3 though the code does compile with WARNS=5 at least on i386 Noticed by: ru
* Replace ROUNDUP/ADVANCE with SA_SIZEluigi2004-04-134-19/+9
|
* Make functions and variables static.luigi2004-04-131-88/+96
| | | | | | | | Remove global variables in favour of local ones. Fix indentation of a couple of switch statements. Overall, this program badly need cleaning up, as it relies on information passed around through global variables.
* Sync list of FTP sites with current reality.kensmith2004-04-122-24/+20
| | | | | MFC after: 1 day Approved by: rwatson (mentor)
* Start committing Bluetooth HID (Human Interface Device) support.emax2004-04-1017-0/+3015
| | | | | | Note: bthidd(8) is still not complete. Need to commit kernel support (a-la Linux /dev/input) to feed HID events into kernel. Also need to write bthidd(8) and bthidd.conf(5) man pages.
* Use uint instead of u_intemax2004-04-0910-64/+64
|
* Make sure Bluetooth stuff can be compiled on amd64emax2004-04-092-5/+5
| | | | Submitted by: ps
* o SIOCGIFCONF->getifaddrs(2) conversion.maxim2004-04-091-76/+51
| | | | | PR: bin/9379 Obtained from: NetBSD
* - Change several errx() calls that should have been err() calls.mux2004-04-092-13/+15
| | | | | | - Handle empty ARP tables properly. - Remove register keyword. - arp(8) is WARNS?=4 clean, so mark it as such to avoid regressions.
* When invoking tar, make sure the mode option (-x) is first.kientzle2004-04-081-7/+6
|
* This manual page will not first appear in 4.10 as RELENG_4 has a differenttrhodes2004-04-071-1/+1
| | | | | | version of the adduser utility. Noticed by: simon
* Make WARNS=5 clean.phk2004-04-052-6/+9
| | | | Prodded by: Stefan Farfeleder <stefan@fafoe.narf.at>
OpenPOWER on IntegriCloud