summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* . clear `.Os' macro value since this tool is not KAME only anymorephantom2000-05-011-5/+4
| | | | . add integration note
* . clear `.Os' macro value since this tool is not KAME only anymorephantom2000-05-011-6/+7
| | | | | . add integration note . avoid `.Nm' value upper case usage
* Add another example showing how you can use pppctl to only allownik2000-04-301-0/+21
| | | | | | dial out at certain times of the day. Approved by: brian
* Remove bogus include, as per style(9).asmodai2000-04-301-2/+0
| | | | Remove unused variable.
* Allocate space for arrays of type "char *", not "char **".ghelmer2000-04-301-3/+3
| | | | | | Rev 1.8 made the type consistently incorrect. Noted by: Ben Smithurst <ben@scientia.demon.co.uk>
* Remove unused include.asmodai2000-04-292-2/+0
|
* Remove a bogus include.asmodai2000-04-291-1/+0
|
* Fix a situation where a pointer which should point to dynamicallyghelmer2000-04-281-3/+8
| | | | | | | | | | | allocated memory was instead pointed to a static string. A later free() on the value of the pointer was a possible source of reported "warning: pointer to wrong page" messages from cron. Use consistent types in sizeof when malloc'ing memory for the environment. PR: kern/12248, bin/11169, bin/9722
* Update periodic to use the function source_rc_confs thatnbm2000-04-271-0/+1
| | | | /etc/defaults/rc.conf now exports.
* MFPAO3. Improvement of of pccard cis tuple parsing capability.iwasaki2000-04-264-523/+1070
| | | | | | | | | - Fixed bogus CIS tuple dumping (Network node ID, IRQ modes and etc.) - Include telling drivers ethernet address if Network node ID tuple is available. This is usefull for some bogus ehter cards which can't get correct ethernet address from CIS tupple. Obtained from: PAO3
* MFPAO3. Add support multi io window. This code support following cards;iwasaki2000-04-263-59/+97
| | | | | | | | | | | | Accton UE2212 PLANET-SMART-COM-CREDITCARD-2000 Melco LPC-T ME-3000II Laneed LD-CDY Melco LPC3-TX Submitted by: MIHIRA Sanpei Yoshiro <sanpei@sanpei.org> Obtained from: PAO3
* The worm device is dead in -CURRENT, and wormio.h just went away.obrien2000-04-263-358/+0
| | | | Reviewed by: commiters on IRC
* /dev/r<FOO> => /dev/<FOO>obrien2000-04-262-3/+3
|
* Clarify the use of the auth service's -d option for specifyingsheldonh2000-04-261-6/+15
| | | | | | a fallback username. Reviewed by: green
* random.h moved to sys/obrien2000-04-261-2/+2
|
* Correct typo in description string: `CANNOT' -> `CAN'.jkoshy2000-04-261-1/+1
| | | | | PR: docs/18177 Submitted by: MIHIRA Yoshiro <sanpei@sanpei.org>
* ancontrol first appeared in FreeBSD 4.0, not 3.0.mpp2000-04-231-3/+3
| | | | | | Also fix a couple of minor mdoc style things as long as I'm in here. Submitted by: Allen Campbell <allenc@verinet.com>
* Cosmetic - fix RCS tag.markm2000-04-231-1/+1
|
* Reduce the default timeout for the three button emulationyokota2000-04-212-2/+2
| | | | from 200 msec to 100 msec.
* o Update extattrctl.8 to reflect new initattr -p, -r, and -w options.rwatson2000-04-202-4/+41
| | | | | | | o Update extattrctl.c to default new attributes to readable and writable only by the kernel and root user. Previously the default was to allow the file owner to directory view and manipulate the attributes, which is probably an inappropriate default.
* o Allow the ``-p'' argument to be specified to initattr, which indicatesrwatson2000-04-201-8/+46
| | | | | | | | | | | that space for extended attributes should be preallocated, instead of using a sparse attribute file. NOTE: This can result in a really large file full of zeros. However, it can prevent a low disk condition from causing an attribute write to fail, which is good for security and consistency attributes. o Unlink the attribute file during initattr if an error occurs -- this is alright, as we specify O_CREAT when opening the file.
* Slight grammar and white-space modification.phantom2000-04-201-3/+5
|
* Remove useless .Nm macro argumentphantom2000-04-201-2/+2
|
* o Update initattr to add magic numbers and version numberrwatson2000-04-191-35/+99
|
* Enable 8bit chars excepting high controlsache2000-04-181-4/+10
|
* Minor man page formatting changes and improvements.rwatson2000-04-172-5/+12
| | | | Suggested by: chris
* Code compiles and installs 100% better if included in the Makefile.rwatson2000-04-163-0/+16
| | | | Suggested by: Voices in my head.
* Introduce userland utilities to set and get extended attributes. Theserwatson2000-04-164-0/+342
| | | | | | | | utilities do not present the world's greatest interface, and will undoubtably change soon. However, they do let people experiment with extended attributes, and provide samples of how to use the syscalls. Obtained from: TrustedBSD
* Change "FreeBSD 5.0" to ".Fx 5.0"chris2000-04-161-1/+2
|
* Introduced /usr/sbin/extattrctl, a utility for managing UFS/FFS extendedrwatson2000-04-154-0/+261
| | | | | | | | | | attributes (recently committed). Using extattrctl, the extended attribute service may be started and stopped for specific file systems; specific attributes may be enabled or disabled, and the backing file for each attribute configured. Also, backing files may be initialized. Reviewed by: adrian, bp, freebsd-fs, the unthanked masses Obtained from: TrustedBSD
* Fix minor bugs.iwasaki2000-04-142-1/+10
| | | | | - reset line number when new file is included. - activate `-i' command lline option (specify available IRQ) again.
* Replace the inappropriate use of .Nx (netBSD) with a more generalizedsheldonh2000-04-141-1/+1
| | | | | | | .Ux (UNIX) as is appropriate in the context used. PR: 17954 Submitted by: Brian Handy <handy@physics.montana.edu>
* remove extern int errno; include errno.himp2000-04-142-2/+1
|
* Whitespace change: reformat to avoid hard sentence breaks and longsheldonh2000-04-131-19/+35
| | | | lines.
* Remove a rogue spacebrian2000-04-131-1/+1
|
* Unhook headers from development tree and point to the actual system headers.msmith2000-04-115-28/+9
|
* Set the right default timeout to 200ms as per the manpage.roberto2000-04-111-1/+1
| | | | | PR: bin/17879 Submitted by: Samuel Tardieu <sam@ada.eu.org>
* - Use .Ar properly at the end of a sentence:chris2000-04-111-2/+1
| | | | | | ``.Ar command.'' -> ``.Ar command .'' - Remove a useless empty line.
* Add mlxcontrol.msmith2000-04-111-0/+1
|
* This commit was generated by cvs2svn to compensate for changes in r59138,msmith2000-04-117-0/+1561
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * This is a command-line management tool for RAID controllers managed by themsmith2000-04-117-0/+1561
| | | | | | | | mlx(4) driver.
* | Installing via an HTTP proxy should not attempt to resolve themurray2000-04-101-1/+5
| | | | | | | | | | | | | | | | hostname of the FTP server; that is the proxy's job. This temporarily deletes the nameserver variable before calling mediaSetFTP. PR: 17371 Approved by: jkh
* | Add a missing ``break''brian2000-04-091-0/+1
| |
* | Add restart capability by SIGHUP. On restart, working configurationiwasaki2000-04-084-6/+255
| | | | | | | | | | | | | | | | | | | | (resource and card configuration being used) is to be maintained for consistency. Part of resource pool re-initialization would be rewrite later using on Warner-san's hints driver API :-) Reviewed by: nate, imp and -nomads ML in Japan. Obtained from: http://www.freebsd.org/~iwasaki/pccard/pccardd-signal.diff Commited at: BSD HANAMI Party 2000 in Japan
* | Follow up to the 3 button emulation update in rev 1.41:yokota2000-04-081-20/+25
| | | | | | | | | | | | | | - Fix the -z option which I broke in rev 1.41. It didn't work correctly when used in conjunction with the -m option. - Tweak the 3 button state machine so that 'Up' events of the buttons 1 and 3 are reported immediately as soon as the buttons are up.
* | More error checking and idiot-proofing for the user editor.murray2000-04-081-2/+16
| | | | | | | | | | PR: 14318 Approved by: jkh
* | PR: 17559murray2000-04-085-3/+28
| | | | | | | | | | | | | | | | Approved by: jkh You can't enable 'emulate 3 button' option for moused in sysinstall. This adds a menu option to set moused_flags and the help text explains that entering "-3" will enable this feature.
* | When running ppp -background, show comfort messages showingbrian2000-04-076-40/+74
| | | | | | | | | | | | | | | | when we're redialing/reconnecting. While we're here, log redial, reconnect and phone number announcements to LogCHAT, and reduce some other logging to LogDEBUG.
* | I didn't get this right the last time....brian2000-04-061-13/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | When an NCP reaches TLF, *ONLY* datalink_Close() links that are in DATALINK_OPEN. When the last link reaches TLD, DOWN all NCPs (as we used to in the links TLF (which was the wrong place anyway)), as the NCPs aren't now going to datalink_Close() us unexpectedly, we get to continue doing what we were told to do in the first place. The result: When we lose a link, the IPCP layer goes down and we actually call the stuff in ppp.linkdown !
* | Fixed minor annoyance with sysinstall being redundant / braindead inmurray2000-04-061-1/+3
| | | | | | | | | | | | the network -> interfaces menu. Approved by: jkh
OpenPOWER on IntegriCloud