summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Fix a few cases that relied on 'implicit int' (constraint violation in C99).stefanf2004-07-112-1/+2
|
* Markup nit picking.ru2004-07-091-6/+5
| | | | Reviewed by: joerg
* Make bluetooth compile on all platformsemax2004-07-071-3/+4
| | | | Reviewed by: imp, ru
* PC98 got it right here: sectors can be non-512 byte sized.phk2004-07-071-5/+0
|
* mdoc(7) fixes.ru2004-07-074-14/+18
|
* Generate fresh aux_conf.h.mbr2004-07-061-18/+6
|
* Check if `dirmask' is a member of `pcfs_args_t'.mbr2004-07-061-0/+3
| | | | | | | | A diff to the autoconf aux-files has been submitted to the amd people. PR: 57401 Submitted by: Andre Albsmeier <andre.albsmeier@siemens.com>
* Unbreak pcfs supportmbr2004-07-061-5/+8
| | | | PR: 68679
* Update OS-dependent variables.mbr2004-07-061-12/+15
|
* Sort SEE ALSO references (in dictionary order, ignoring case).ru2004-07-042-4/+4
|
* Fix dofsync() declaration.cperciva2004-07-041-1/+1
| | | | Pointed out by: dwmalone
* Where syslogd would have fsync()ed a file in the past, instead set a flagcperciva2004-07-041-3/+25
| | | | | | | | | | | FFLAG_NEEDSYNC and fsync the file when select() next returns zero. This dramatically speeds up the process of logging large amounts of data, while leaving the essential semantics (that data can be expected to be on disk if we crash) unchanged. In my tests, this speeds up the rc phase of booting by 18-20%. [1] YES PLEASE! by: phk [1]
* Nothing says that /var/log can't be not a directory but a symbolic linksobomax2004-07-041-2/+2
| | | | | | | to a directory. Therefore, use stat(2) instead of lstat(2) to check if /var/log exists. MFC after: 7 days
* Eliminated double whitespace.ru2004-07-0320-50/+53
|
* Use C99 conforming designated initialisers rather than the obsolete GCC syntax.stefanf2004-07-032-18/+18
|
* Mechanically kill hard sentence breaks.ru2004-07-021-19/+38
|
* Mechanically kill hard sentence breaks.ru2004-07-02107-681/+1317
|
* Fixed SEE ALSO references.ru2004-07-021-13/+13
|
* Removed trailing whitespace.ru2004-07-022-3/+3
|
* Fixed spelling of the document date.ru2004-07-021-1/+1
|
* Static device counts will not be supported in 6.x so place the generatedbrooks2004-06-301-0/+2
| | | | | | macros (N<driver>) under BURN_BRIDGES. Discussed with: peter, imp, scottl, ...
* Fix to not use 255, but instead use APM_UNKNOWN.imp2004-06-301-9/+9
| | | | | | | Compare things correctly against -1 or 0 Don't print any capabilities if unknown is returned from the kernel. Reviewed/Submitted by: njl, Liam Foy
* Remove a duplicated printf().mux2004-06-301-1/+0
| | | | Submitted by: Niki Denev <nike_d@cytexbg.com>
* Re-implement LQM, this time according to the rfc.brian2004-06-3010-67/+208
| | | | | PR: 11293 MFC after: 4 weeks
* Also print out the standard header for FADT since it has one.njl2004-06-301-7/+12
|
* - pkg_add spawns itself as argv[0] when installing dependent packages, toeik2004-06-2927-61/+97
| | | | | | | | | | | | | | | | | | enable the use as a port on older systems - use absolute paths in all calls to external programs, to account for strange PATH settings - use INDEX or INDEX-5 depending on FreeBSD version, to enable the use on FreeBSD 4.x as a port. - conditionalize all 4.x/5.x differences on __FreeBSD_version, so that the pkg_install tools can be kept in sync on 4.x and 5.x - Bump PKG_INSTALL_VERSION Reviewed by: portmgr (bento run) MFC after: 4 weeks
* - pkg_info: flag -r: (show packages this packages depends on (documentation ↵eik2004-06-2913-81/+110
| | | | | | | | | | | | | | | | change)) - pkg_info: new flag -j (show the requirements script) - pkg_info: fix verbose output when used on packages - better handling of corrupt entries in /var/db/pkg - differ between corrupt entires and packages not installed - various small fixes PR: 56989, 57016, 57029, 26468
* - pkg_create: new flag -S (clean room installation)eik2004-06-295-33/+74
| | | | | | - pkg_create: checksum meta files too PR: 66032
* - match package version numbers with relational operatorseik2004-06-2913-49/+403
| | | | | | | | | | | | | | - use glob patterns when matching packages by origin - csh-style {...} choices in glob matching - pkg_info: new flag -E (list matching package names only) - pkg_version: new flag -T (test if a given name matches a pattern) - new flag -X (interpret pattern as an extended regular expression) PR: 56961
* - complete rewrite of the version number parsing code, restoring ↵eik2004-06-294-87/+265
| | | | | | | | | | compatibiliy of 5.x with 4.x and portupgrade - parse version numbers of ports containing an underscore followed by a number correctly - handle special strings pl, alpha, beta, pre and rc PR: 56961
* Mention that ``set mtu max'' is necessary for PPPoE.brian2004-06-291-0/+3
| | | | | PR: 32040 MFC after: 2 weeks
* Reduce MAXMSS limit by 12 bytes to allow for rfc 1323.brian2004-06-291-1/+1
| | | | | | PR: 32717 Submitted by: MORI Kouji <moriko@hh.iij4u.or.jp> MFC after: 2 weeks
* Fix cut-n-paste bugs in hccontrol(8). Its very strange that no one noticedemax2004-06-282-17/+17
| | | | | them earlier. Thanks to Mike Crosland (mcrosland at xs4all.nl) for pointing them out.
* Prepare jail(8) utility for new functionality which will limitpjd2004-06-271-4/+6
| | | | | | seeing status of mounted file system for jailed processes. Pass full path of jail's root directory to the kernel. mount(8) utility is doing the same thing already.
* If HISMACADDR is set in the environment (by pppoed), pass the value tobrian2004-06-261-0/+16
| | | | | | | | the RADIUS server as RAD_CALLING_STATION_ID. PR: 44310 Submitted by: Gleb Smirnoff <glebius@cell.sick.ru> MFC after: 2 weeks
* Remove dependency on dev/usb/usbdevs.h, in preparation for itsimp2004-06-251-2/+4
| | | | | | disappearing from the tree. We already were splitting the baby (using the symbol for the vendor BROADCOM, but not for the device). Use #defines for both.
* Adjust the system endian and a.out headers to be more MI and cross-buildingobrien2004-06-229-353/+165
| | | | | | friendly. Use the systems headers rather than local versions. Reviewed by: ru
* libcompat doesn't seem to be needed any more.phk2004-06-211-2/+2
|
* libcompat doesn't seem to be necessary any more.phk2004-06-211-3/+0
|
* Merge changes from the tzcode2004a import.stefanf2004-06-205-51/+89
|
* Fix the format-string in a call to err(). It was causing a warning ifgad2004-06-201-1/+1
| | | | compiled on 4.x-stable.
* This commit was generated by cvs2svn to compensate for changes in r130780,stefanf2004-06-201-97/+0
| | | | which included commits to RCS files with non-trunk default branches.
* This commit was generated by cvs2svn to compensate for changes in r130777,stefanf2004-06-204-26/+1028
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import the rest of tzcode2004a, the bits needed for the timezone compiler.stefanf2004-06-209-92/+1162
| | | | | | | | Obtained from: ftp://elsie.nci.nih.gov/pub/tzcode2004a.tar.gz
* | Fix the check for a "duplicate filename to compress", so that we're checkinggad2004-06-191-1/+1
| | | | | | | | | | | | | | | | | | the *filename* and not the pid_file(!). Stupid brain-fault on my part. This could cause a segfault under -neworder if newsyslog had to rotate multiple files, and later ones had specifed the 'N' flag. Bug first reported by: le MFC after: 3 days
* | Use strlcpy(3) to replace the idiomaticrobert2004-06-173-30/+18
| | | | | | | | | | | | | | strncpy(d, s, l); d[l - 1] = '\0'; statements.
* | Document boot0sio and note that it requires modem handshake to work.phk2004-06-171-2/+9
| |
* | Fix a bug which occurred when the home directory given by therobert2004-06-171-1/+2
| | | | | | | | | | | | | | | | -d option was equal to the one already saved and which caused the pw utility to avoid updating values passed by other options processed before the -d option in the code path. Spotted by: Richard Caley <rjc@interactive.co.uk>
* | Tabs were accidentally lost in the last commit.mux2004-06-161-0/+3
| | | | | | | | Submitted by: Liam J. Foy <liamfoy@sepulcrum.org>
* | Assorted markup, spelling, and grammar fixes.ru2004-06-161-2/+3
| |
OpenPOWER on IntegriCloud