summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Set the default manual section for games/ to 6.ru2001-03-2037-37/+16
|
* If the MANSECT variable is specified, it will override the defaultru2001-03-201-1/+4
| | | | | | | | manual section. If, for example, MANSECT is set to 8, the default MAN1=${PROG}.1 feature of bsd.prog.mk becomes MAN8=${PROG}.8. Useful for games, libexec, sbin and usr.sbin subtrees. Reviewed by: bde
* Reboot(8) normally waits 5 seconds after sending SIGTERMs to alliedowse2001-03-201-10/+32
| | | | | | | | | | processes and then sends SIGKILLs. If a lot of processes are swapped out, this delay may not be long enough, so processes such as an X server may be killed before they have had time to clean up properly. Make this delay more dynamic by waiting up to 60 seconds for swap page-in activity to end. While I'm here, ANSIfy and remove a `register' specifier.
* Correct the top memory stats display: convert page counts to kB.tmm2001-03-201-0/+5
| | | | | | Submitted by: Andrea Campi <andrea@webcom.it> Approved by: rwatson Pointy hat to: myself
* Make the pseudo-driver for "/dev/fd/*" handle fd's larger than 255.phk2001-03-201-1/+8
| | | | PR: 25936
* Add a KASSERT on unit2minor() so that we catch it if people try to passphk2001-03-201-0/+1
| | | | us unit numbers which doesn't fit in 24 bits.
* Fix a reference to the "vn" driver in a warning message.phk2001-03-201-1/+1
|
* mdoc(7) police: fixes to the previous revision:ru2001-03-202-4/+16
| | | | | | - fixed bad formatting - avoid using German - removed hard sentence break
* Fixed some typos.ru2001-03-203-3/+3
|
* This manpage is heavily based on the old rpc.3 manpage, andru2001-03-201-1355/+1139
| | | | | | | should have been repo-copied from it in the first place. Apply all of our fixes up to and including revision 1.14 to the original rpc.3 manpage, including conversion to mdoc(7).
* Silence some warningsalfred2001-03-202-10/+10
| | | | Submitted by: LINT
* Unbreak LINT.alfred2001-03-201-0/+2
| | | | | | | | | | because rpcb_clnt.h is generated during buildworld and only installed into /usr/include/rpc (and not present in src/include/rpc) we can fix it by simply not including it when _KERNEL is defined. this isn't the most elegant, way and might deserve some revisiting later. Pointed out by: bde
* Fixed breakage of access() in rev.1.164. Wrong credentials were used forbde2001-03-202-2/+2
| | | | the final path component.
* Removed the second copy of the manual page!ru2001-03-201-311/+0
|
* Removed duplicate $FreeBSD$.ru2001-03-201-1/+0
|
* The TI-RPC spammed over a '#ifdef _KERNEL' hack for the xdrproc_t typedefalfred2001-03-201-1/+6
| | | | | | revert the spammage Pointed out by: bde
* comment out #pragma directive containing Sun SCM tagsalfred2001-03-201-1/+1
|
* New release notes: Kerberos compatability with OpenSSH, dump(8)bmah2001-03-203-7/+40
| | | | | | | | | and nodump flag, ISC DHCP client update to 2.0pl5, split(1) support for large files, units(1) update, netstat(1) per-address packet counting, manpage updates. Fix up notes on Adaptec SCSI RAID and DPT SmartRAID V/VI SCSI RAID controllers (reviewed by scottl).
* This is an MFC candidate.gibbs2001-03-201-7/+6
| | | | | | | | | | | | | | | | | In our idle loop, use an or instruction to set PRELOADEN rather than rewriting the contents of DMAPARAMS to DFCNTRL. The later may re-enable the DMA engine if the idle loop is called to complete the preload of at least one segment when a target disconnects on an S/G segment boundary but before we have completed fetching the next segment. This correts a hang, usually in message out phase, when this situation occurs. This bug has been here for a long time, so the situation is rare, but not impossible to reproduce. It only affected Ultra2/U160 controllers. Correct a few comments. Extra Sanity. Make sure that SCSIEN is also turned off, along with HDMAEN, at the end of the data phase.
* Remove extra CFLAGSjedgar2001-03-201-2/+1
| | | | | | Add DPADD Submitted by: bde
* Remove extra CFLAGS and redundant SRCSjedgar2001-03-201-2/+1
| | | | | | Add DPADD Submitted by: bde
* Add LIBPOSIX1Ejedgar2001-03-201-0/+1
|
* Suggested by kris, OpenSSH shall have a version designated to note thatgreen2001-03-201-1/+2
| | | | it's not "plain" OpenSSH 2.3.0.
* Use the same API as the example code.peter2001-03-204-28/+26
| | | | | | | | | | Allow the initial hash value to be passed in, as the examples do. Incrementally hash in the dvp->v_id (using the official api) rather than add it. This seems to help power-of-two predictable filename trees where the filenames repeat on a power-of-two cycle and the directory trees have power-of-two components in it. The simple add then mask was causing things like 12000+ entry collision chains while most other entries have between 0 and 3 entries each. This way seems to improve things.
* Make password attacks based on traffic analysis harder by requiring thatgreen2001-03-209-5/+74
| | | | | | | "non-echoed" characters are still echoed back in a null packet, as well as pad passwords sent to not give hints to the length otherwise. Obtained from: OpenBSD
* Included in the updated version of tirpc's sm_inter.x Sun added thealfred2001-03-201-23/+2
| | | | | | | | | | | | SM_NOTIFY procedure. Remove our hand-coded one as it was causing world breakage for worlds compiled with NOSHARED=yes because the static linker is a bit less forgiving (or not as broken as) our dynamic linker. Add $FreeBSD$ while I'm here. Pointed out by: bde
* Make it clear who can and can't set the UF_NODUMP, UF_OPAQUE, anddd2001-03-191-4/+7
| | | | | | | SF_ARCHIVED file flags. PR: 25227 Approved by: nik
* o Two changes made elsewhere relating to recent EA commits, but notrwatson2001-03-192-2/+4
| | | | | | | | committed to NOTES: - s/FFS_EXTATTR/UFS_EXTATTR/ - add UFS_EXTATTR_AUTOSTART Submitted by: bde
* Mark 'going nowhere without my init' bug as MERGED.wilko2001-03-191-1/+1
|
* Axe TCP_RESTRICT_RST. It was never a particularly good idea except for a fewdes2001-03-192-24/+2
| | | | | | | very specific scenarios, and now that we have had net.inet.tcp.blackhole for quite some time there is really no reason to use it any more. (last of three commits)
* Axe TCP_RESTRICT_RST. It was never a particularly good idea except for a fewdes2001-03-199-58/+0
| | | | | | | very specific scenarios, and now that we have had net.inet.tcp.blackhole for quite some time there is really no reason to use it any more. (second of three commits)
* Axe TCP_RESTRICT_RST. It was never a particularly good idea except for a fewdes2001-03-193-17/+0
| | | | | | | very specific scenarios, and now that we have had net.inet.tcp.blackhole for quite some time there is really no reason to use it any more. (first of three commits)
* Remove 'NOSHARED=yes' (../Makefile.inc already sets this)jedgar2001-03-192-3/+0
|
* This commit was generated by cvs2svn to compensate for changes in r74485,obrien2001-03-192-4/+11
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of GCC 2.95.3's libobjcobrien2001-03-192-4/+11
| |
* | This commit was generated by cvs2svn to compensate for changes in r74483,obrien2001-03-197-246/+396
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of GCC 2.95.3's libstdc++obrien2001-03-197-246/+396
| |
* | This commit was generated by cvs2svn to compensate for changes in r74481,obrien2001-03-1911-38/+95
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of GCC 2.95.3's libio -- the C++ iostream facility.obrien2001-03-1911-38/+95
| |
* | New release notes: timed(8) fix (FreeBSD-SA-01:28), rwhod(8) fixbmah2001-03-192-32/+67
| | | | | | | | | | | | | | (FreeBSD-SA-01:29), Heimdal 0.3 update, pkg_sign(1) and pkg_check(1) added, BSD_daemon graphics. Many MFCs for RELENG_4 noted as well.
* | Remove some files that are no longer in the FSF branch.obrien2001-03-191-26/+0
| |
* | Merge gcc-2.95.3 changes onto mainline. Update FreeBSD changes to convergeobrien2001-03-1910-2670/+172
| | | | | | | | with changes made in the FSF tree.
* | Allow LQR periods of 1 second and FSM retry periods of 1 second. This allows usroger2001-03-191-2/+2
| | | | | | | | | | | | | | | | to run PPP over Radiocontact T-Link Radio Modems which run best when something is transmitted at least every 1.5 seconds. Tested by: Jennifer Clark <jen@telepresence.strath.ac.uk> Approved by: Brian
* | This commit was generated by cvs2svn to compensate for changes in r74473,obrien2001-03-1910-151/+119
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of the GCC 2.95.3 compilersobrien2001-03-1913-154/+122
| |
* | Add missing comma when KERBEROS is defined.alfred2001-03-191-1/+2
| |
* | Teach ftpd about the new GLOB_MAXPATH flag.jlemon2001-03-192-0/+11
| |
* | Introduce the GLOB_MAXPATH flag, which allows the user to limit thejlemon2001-03-193-39/+62
| | | | | | | | | | | | | | number of paths which glob(3) will return. Remove the hardcoded limit from the last commit, which restores the previous unbounded behavior. Document the new flag in the manual page.
* | o Missed in addition of setfacl.h in setfacl(1)rwatson2001-03-191-0/+76
| |
* | o Missed in prior commit: getfacl(1) Makefilerwatson2001-03-191-0/+9
| |
OpenPOWER on IntegriCloud