summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Add -o/-O options to pkg_version:krion2005-07-274-27/+57
| | | | | | | | | | -o Show the origin recorded on package generation instead of the package name. -O Only list packages whose registered origin is origin. Based on PR: bin/78640 Submitted by: Marcus Grando <marcus at corp dot grupos.com.br>, flz
* powerd(8) requires root permissions to run so notify the user if theynjl2005-07-251-0/+4
| | | | | | | try to start it without this. Submitted by: Philip S. Schulz MFC after: 2 days
* Move DNS configuration before sendmail configuration, becausearved2005-07-251-4/+4
| | | | | | newaliases(1) may hang without proper DNS configuration. Approved by: brueffer
* Disable thread support in BIND. It appears to reduce performance ratherdes2005-07-257-14/+14
| | | | | | | | than increase it, and seems to be the cause of the memory leaks which some users have reported. Requested by: dougb MFC after: 5 days
* (More thoroughly) fix the problem with the EGREP lines that was reporteddougb2005-07-232-26/+45
| | | | | | | on -current by Ben Kaduk <minimarmot@gmail.com>. Add a hack of my own to allow the user to supply the paths to the INF and SYS files on the command line.
* Sync usage message with the code and manual page.jkoshy2005-07-231-0/+1
| | | | Submitted by: maxim
* Use the current BST/BIF ioctls, not the deprecated ones.njl2005-07-221-2/+2
| | | | MFC after: 2 days
* Bump the shared library version number of all libraries that have notkensmith2005-07-221-1/+1
| | | | | | | been bumped since RELENG_5. Reviewed by: ru Approved by: re (not needed for commit check but in principle...)
* Use "FreeBSD/i386" over "FreeBSD/ia32" to avoid any confusion.ceri2005-07-221-1/+1
|
* Correct some spelling and grammatical errors.ceri2005-07-221-7/+7
|
* Fix ndisgen(8) for amd64jkim2005-07-221-72/+116
| | | | | | | | | | | | | | | - file(1) does not recognize UTF-16 encoded .INF file: netbc564.inf: MPEG ADTS, layer I, v1, 96 kBits, 32 kHz, Stereo Use egrep(1) to match two strings, i. e., `Signature' and `Class=Net'. - Fix linking failure. Generate a temporary Makefile to emluate official kernel module build process. - Some minor typo/style fixes. Reviewed by: obrien
* - Fix spelling of 'multiplexer'markus2005-07-211-6/+6
| | | | | | | - Grammar fixes Approved by: simon MFC after: 3 days
* Remove the vttest program. It lives in ports/sysutils/vttest now.phk2005-07-216-2554/+0
|
* Fixing an off-by-one error which results in 'ugidfw list' to complain aboutavatar2005-07-211-1/+1
| | | | | | | "Data error in security.mac.bsdextended.rules.N: Unknown error: 0." Reviewed by: rwatson MFC after: 3 days
* Recognise GEM ethernet adapter (sparc64/ppc).grehan2005-07-212-0/+2
| | | | | reviewed by: scottl MFC after: 3 days
* Make sure /etc/fstab is written out for Apple-partitioned drivesgrehan2005-07-212-0/+8
| | | | | reviewed by: scottl MFC after: 3 days
* Connect snapinfo to the build.marks2005-07-201-0/+1
|
* snapinfo -- show snapshot location on UFS file systemsmarks2005-07-203-0/+251
| | | | | | Glanced over by: kan Review by: ru (snapshot.8) MFC: TBD
* Point to the right path under www.freebsd.org/doc for the Handbookkeramida2005-07-201-1/+1
| | | | | | | section on "make world". The old link still works fine, but all the hyperlinks of the referenced document are broken; the same links work find if /doc/en_US.ISO8859-1 is used instead of plain /doc to reach the online Handbook copy.
* Mention that it is possible to have jailsjcamou2005-07-201-0/+6
| | | | | | | | | | started at boot time if specified in /etc/rc.conf. PR: docs/81040 Submitted by: matteo Approved by: trhodes (mentor) MFC after: 1 week
* Add a -H option to enable horizontal virtual scrolling, much like -V forphilip2005-07-192-18/+51
| | | | | | | | vertical virtual scrolling. This also respects -U for the distance. PR: bin/82762 Submitted by: Eric Kjeldergaard <kjelderg -at- gmail.com> MFC after: 1 month
* Ignore EPERM from sysctl(3). It is returned when passive coolingume2005-07-181-2/+5
| | | | | | is active. Reviewed by: njl
* Catch up with menus.c revision 1.399.obrien2005-07-172-58/+0
|
* Merged from boot0cfg.nyan2005-07-152-13/+33
| | | | | - Update the mkrdev function. - Attempt gctl verb "write MBR" when updating.
* Reduce diffs from boot0cfg.c (no functional change).nyan2005-07-151-86/+93
|
* Attempt gctl verb "write MBR" when updating.phk2005-07-152-1/+25
| | | | This should solve the problem of modifying the MBR while running.
* Decouple vttest from the tree so we can remove <sgtty.h>phk2005-07-151-1/+1
| | | | This program probably should live in src/tools or ports anyway.
* kbdmux(4) keyboard multiplexer integrationemax2005-07-142-2/+92
| | | | | | | | | | | | | | | | | | | | o Slightly change KBADDKBD and KBRELKBD ioctl() interface. Instead of passing keyboard index pass keyboard_info_t structure with populated 'kb_unit' and 'kb_name' fields. Keyboard index is not very user-friendly and is not very easy to obtain. Keyboard driver name and unit, on the other hand, is much more user friendly and known almost all the time; o Move definition of keyboard_info_t structure up; o Teach kbdcontrol(1) how to attach/detach keyboards to/from the keyboard multiplexor; o Update kbdcontrol(1) man page and document new functionality. To attach/detach keyboard to/from keyboard multiplexor one needs to use keyboard device name (i.e. ukbd0). MFC after: 1 week
* - Remove MLINKS to nonexistant manpagesbrueffer2005-07-142-2/+2
| | | | | | | - Change some section numbers to match reality - For MLINKS to manpages from ports, mention which port installs them MFC after: 3 days
* Fix spelling error in sample command.rwatson2005-07-131-1/+1
| | | | MFC after: 3 days
* Spelling and grammar fixes.brueffer2005-07-132-12/+12
| | | | MFC after: 3 days
* Fix an oops on FBSD-version for packages-5-stable I made in previouskensmith2005-07-111-1/+1
| | | | | | | commit. Pointy hat: kensmith Approved by: re (implicit)
* Prepare for packages-7-current. While here retro-fit packages-5.4-releasekensmith2005-07-111-1/+3
| | | | | | which probably should have been done a while ago. Approved by: re (implicit)
* update for v3.9.1 (releaes)sam2005-07-112-1/+4
| | | | Approved by: re (scottl)
* Adapt sysinstall to the new dhclient. This includes explicitely tellingscottl2005-07-111-3/+9
| | | | | | | | | it about the lease file location and not invoking it with the (non-existant) '-r' option. Releasing leases works vastly different now, so this isn't needed. Submitted by: sam Approved by: re
* - Grammar fixesmarkus2005-07-091-12/+12
| | | | | | | - s/spdcontrol/sdpcontrol/ Approved by: re (hrs, rwatson), brueffer MFC after: 3 days
* Fix a bug that affected on-the-fly gmon.out file generation.jkoshy2005-07-093-12/+9
| | | | Approved by: re (scottl)
* handle RTM_IFINFO events so we terminate when an interface issam2005-07-081-1/+14
| | | | | | | marked down Reviewed by: brooks, avatar Approved by: re (scottl)
* explicitly set IEEE80211_KEY_GROUP instead of depending on kernel kludgesam2005-07-051-1/+1
| | | | | Reviewed by: avatar Approved by: re (scottl)
* Update key handling:sam2005-07-051-12/+27
| | | | | | | | | | | | | | | o use proper api for setting/deleting keys instead of depending on key indices o check mac address to decide whether a key is unicast or group/global o check set_tx on key set to decide whether a group/global key should also be marked as default o explicitly set IEEE80211_KEY_GROUP flag for group keys instead of depending on kernel auto-add kludge With the above changes static wep key handling works. Reviewed by: avatar Approved by: re (scottl)
* Update hardcoded postfix version number to the current postfix versionsimon2005-07-042-2/+2
| | | | | | | | | 2.2.x. PR: i386/82030 Prodded by: matteo MFC after: 1 week Approved by: re (scottl)
* Don't ask about CD numbers if not installing from CD.dwhite2005-07-021-6/+8
| | | | Approved by: re
* Up the count of busses supported by usbd(8) from 4 to 40. With the adventjhb2005-07-011-1/+1
| | | | | | | | | | of USB2 "duplicate" psuedo busses, it is not at all uncommon for machines to have more than 4 USB busses nowadays. PR: bin/81533 Submitted by: Darren Pilgrim dmp at bitfreak dot org Approved by: re (scottl) MFC after: 1 week
* Add examples illustrating how to record system-wide profiles andjkoshy2005-07-011-3/+18
| | | | | | | | | | how to convert these to gprof(1) flat profiles. Augment description for the '-g' option. Remove superfluous quotes around a macro argument, bump document date [1]. Reminded by: ru [1] Approved by: re (blanket hwpmc)
* Unbreak tinderbox builds. Remove a debug printf.jkoshy2005-07-011-14/+12
| | | | Approved by: re (blanket hwpmc)
* MFP4:jkoshy2005-06-305-349/+1604
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - pmcstat(8) gprof output mode fixes: lib/libpmc/pmclog.{c,h}, sys/sys/pmclog.h: + Add a 'is_usermode' field to the PMCLOG_PCSAMPLE event + Add an 'entryaddr' field to the PMCLOG_PROCEXEC event, so that pmcstat(8) can determine where the runtime loader /libexec/ld-elf.so.1 is getting loaded. sys/kern/kern_exec.c: + Use a local struct to group the entry address of the image being exec()'ed and the process credential changed flag to the exec handling hook inside hwpmc(4). usr.sbin/pmcstat/*: + Support "-k kernelpath", "-D sampledir". + Implement the ELF bits of 'gmon.out' profile generation in a new file "pmcstat_log.c". Move all log related functions to this file. + Move local definitions and prototypes to "pmcstat.h" - Other bug fixes: + lib/libpmc/pmclog.c: correctly handle EOF in pmclog_read(). + sys/dev/hwpmc_mod.c: unconditionally log a PROCEXIT event to all attached PMCs when a process exits. + sys/sys/pmc.h: correct a function prototype. + Improve usage checks in pmcstat(8). Approved by: re (blanket hwpmc)
* Fixed two bugs in Perl to C conversion that prevented locale nameru2005-06-301-3/+3
| | | | | | | | from being parsed correctly. OK'ed by: markm Approved by: re (scottl) MFC after: 3 days
* remove a few uses of the word `really'jmg2005-06-272-4/+3
| | | | | | Reviewed by: hrs Approved by: re (scottl) MFC after: 1 week
* Tidy up the markup (fixing some nearby content bugs).ru2005-06-276-279/+414
| | | | | Timeout from: sam Approved by: re (blanket manpages)
* - Tidy markup. [1]jkoshy2005-06-241-31/+22
| | | | | | | | | | | | - Remove mention of an unimplemented option. - Clarify the behavior of pmcstat when logging PMCs are requested, but no log output file is specified. - Add a cross-reference to pmclog(3). - Bump document date. Reviewed by: ru Submitted by: ru [1] Approved by: re (blanket hwpmc)
OpenPOWER on IntegriCloud