summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Remove libz and pppd redundancyimp2005-06-031-3/+0
|
* Use __FBSDID() over #ident.stefanf2005-05-314-4/+8
|
* Make apm(8) understand AC Line state 2 as "backup power".will2005-05-302-4/+6
| | | | Submitted by: liamfoy@sepulcrum.org
* update after import of v3.9.1-096sam2005-05-292-8/+50
| | | | Reviewed by: bms
* Even if variable is never used uninitialized by the semantic, reduce compilercharnier2005-05-291-0/+2
| | | | warning by giving an initial value in all cases.
* Add VESA mode support for syscons, which enables the support of 15, 16,delphij2005-05-292-167/+572
| | | | | | | | | | | | | | | | | | | | | 24, and 32 bit modes. To use that, syscons(4) must be built with the compile time option 'options SC_PIXEL_MODE', and VESA support (a.k.a. vesa.ko) must be either loaded, or be compiled into the kernel. Do not return EINVAL when the mouse state is changed to what it already is, which seems to cause problems when you have two mice attached, and applications are not likely obtain useful information through the EINVAL caused by showing the mouse pointer twice. Teach vidcontrol(8) about mode names like MODE_<NUMBER>, where <NUMBER> is the video mode number from the vidcontrol -i mode output. Also, revert the video mode if something fails. Obtained from: DragonFlyBSD Discussed at: current@ with patch attached [1] PR: kern/71142 [2] Submitted by: Xuefeng DENG <dsnofe at msn com> [1], Cyrille Lefevre <cyrille dot lefevre at laposte dot net> [2]
* Document 'jid' keyword for ps(1) and '-j' option for pgrep(1)/pkill(1).pjd2005-05-281-5/+20
|
* Do not tread 128-bit UUID as int128. Provide separate macros to get/putemax2005-05-271-27/+36
| | | | | | 128-bit UUID libsdp(3). Fix 128-bit UUID printing in sdpcontrol(8). MFC after: 3 days
* Add cross-references to iostat, systat and vmstat.keramida2005-05-271-1/+4
|
* Use clnt_create_timed() instead of clnt_create(). The former has anmux2005-05-271-6/+8
| | | | | | | | additional argument that allows us to specify a timeout, like we do for the subsequent clnt_call() calls. Submitted by: Jeremie Le Hen <jeremie@le-hen.org> MFC after: 3 weeks
* Interlink systat(1), iostat(8) and vmstat(8) through their SEE ALSOkeramida2005-05-261-0/+1
| | | | sections, so that users of one can learn about the others easily.
* - Add further functionality to check for invalid charactersroberto2005-05-262-11/+30
| | | | | | | | | - Remove keyword 'continue' for more indepth error reporting on each line - WARNS 6 Clean Submitted by: Liam J. Foy <liamfoy@dragonflybsd.org> MFC after: 1 week
* Release maintainership. More ambitious minds have plans for the ntpsheldonh2005-05-251-2/+0
| | | | | | | docs. Last I heard, Harlan Stenn was considering using FreeBSD's pages as a starting point for the ISC NTP distribution's own pages. If that happens, everyone wins and these can go away, to be replaced by imported versions in contrib/ntp.
* No need to specify the include subdirectory. During buildworld theharti2005-05-251-1/+1
| | | | | | correct files are included from a temp. include directory. Explained by: ru
* Add an -I option to pkg_version:cperciva2005-05-244-4/+15
| | | | | | | | | | | | -I Use only the index file for determining if a package is out of date. This is much faster than using the version number from a port's Makefile, at the expense of potentially giving an incor- rect result if the index file is out of date. Without this option, the index file is only consulted if "make -V PKGNAME" cannot be used. Approved by: portmgr (krion)
* Fix a particularly egregious grammar error.adamw2005-05-241-1/+1
| | | | | Approved by: wpaul MFC after: 1 day
* This module was wrongly including header from /usr/include. Give itharti2005-05-231-1/+1
| | | | the correct path to the source headers.
* Catch up with the bsnmpd daemon's 64bit time ticks.philip2005-05-231-1/+1
|
* The ticks delivered by the SNMP daemon are now 64-bit, so make ourharti2005-05-231-1/+1
| | | | | local tick variable which is used to reduce the number of updates from kernel structures and to ensure intra-PDU consistency also 64 bit.
* Bump the shared library version number of the modules because ofharti2005-05-231-1/+1
| | | | changes in the module interface.
* Remove unused variables. int -> size_t for lenghts.charnier2005-05-202-3/+2
|
* Add FBSDID. Add missing prototypes. Remove unused variables. Give variablecharnier2005-05-202-14/+15
| | | | an initial value to silent compiler.
* Remove unused variable.charnier2005-05-201-1/+0
|
* Remove unused variables. Shorten the path to a WARNS=6 compliance.charnier2005-05-201-17/+20
|
* Remove unused variablescharnier2005-05-201-2/+1
|
* Add cases for ENOBUFS and ENETDOWN. We need to make sure that wecsjp2005-05-191-0/+2
| | | | | | | | | catch all transient errors. This fixes situations where transient error conditions such as network interfaces losing carrier signals or the system running out of mbufs would result in the permanent removal of forwarding syslog messages. MFC after: 1 week
* Fix problem with session termination. bthidd(8) maintains two L2CAPemax2005-05-182-3/+4
| | | | | | | | | | | | | | | | connections to Bluetooth HID device. As soon as Bluetooth HID device is powered off (or goes out of RF range) the stack will terminate both connections. File descriptors for both connections will become active on next select(2) call. Because bthidd(8) processes file descriptors in order, it will detect descriptor for one of the closed connections first and kill the session. However, there is still a second (active) descriptor that used to point to the same session. bthidd(8) used to assert() if it cant find session by file descriptor, which was wrong. While I'm here fix a couple of typos in parser.y Reported by: Eric Anderson anderson AT centtech DOT com MFC after: 3 days
* Update ndiscvt to handle .INF files that specify multiple entries inwpaul2005-05-151-8/+56
| | | | their [Manufacturer] sections.
* Use \033 instead of \e because \e is not a standard.nyan2005-05-151-10/+10
| | | | | Noticed by: stefanf Reviewed by: diff(1)
* A foreground color number on pc98 console is 7 not 15.nyan2005-05-151-6/+18
|
* Use \e for escape char instead of ^[ directly.nyan2005-05-151-10/+10
|
* Remove symblic link kernel->dev/null creation. We don't need it in 5.x/6.xpjd2005-05-141-2/+0
| | | | | | world (there is no /kernel file anymore). Reminded by: Isaac Levy presentation
* Fix the "only wrote -1 of 32768 bytes: Input/output error" error message.ru2005-05-131-2/+5
|
* NI_WITHSCOPEID cleanupume2005-05-132-5/+5
| | | | Reviewed by: gad
* NI_WITHSCOPEID cleanup. Neither RFC 2553 nor RFC 3493 definesume2005-05-135-52/+16
| | | | | NI_WITHSCOPEID, and our getaddrinfo(3) does nothing special for it, now.
* Spell out shutdown(2)'s how argument in #ifdef notdef'd code.jmallett2005-05-111-1/+1
|
* Spell SHUT_RD as SHUT_RD not 0 as the how argument to shutdown(2).jmallett2005-05-111-1/+1
|
* Fix support for Windows drivers that support both PCI and PCMCIA devices atwpaul2005-05-081-13/+15
| | | | | | | | | | | | | the same time. Fix if_ndis_pccard.c so that it sets sc->ndis_dobj and sc->ndis_regvals. Correct IMPORT_SFUNC() macros for the READ_PORT_BUFFER_xxx() routines, which take 3 arguments, not 2. This fixes it so that the Windows driver for my Cisco Aironet 340 PCMCIA card works again. (Yes, I know the an(4) driver supports this card natively, but it's the only PCMCIA device I have with a Windows XP driver.)
* The current NTP servers for .nl do not work with ntpdate, so switch tojhb2005-05-062-12/+12
| | | | | | | | using the servers provided by nl.net instead. PR: bin/80659 Submitted by: Jilles Tjoelker jilles at stack dot nl MFC after: 3 days
* The kernel doesn't need to include a tun device - the module will be loadedbrian2005-05-061-7/+0
| | | | on demand if required.
* Make smbfs capable to use 16bit char set in filenames.takawata2005-05-041-2/+2
| | | | PR:78110
* Use libutil in DPADD as well.mlaier2005-05-041-1/+1
| | | | Submitted by: ru
* Adapt Makefiles for pfctl(8) and authpf(8) to 3.7 sources.mlaier2005-05-031-7/+3
|
* Use static for static variables. This fixes gcc4 build.delphij2005-05-021-3/+2
|
* Use socklen_t in place of socket operations, instead of intdelphij2005-05-021-2/+2
|
* Document the device burncd uses by default.brueffer2005-05-021-1/+10
| | | | | Submitted by: Christoph Mallon <christoph.mallon@gmx.de> MFC after: 3 days
* add targets for ipnodes.byname and ipnodes.byaddr which carriesume2005-05-021-0/+38
| | | | | IPv6 addresses. these targets are off by default, and these are built when there is /var/yp/ipnodes.
* Neaten usage message.jkoshy2005-05-021-1/+1
|
* fix typo in previos commit.ume2005-05-021-2/+2
|
* teach IPv6 to async DNS resolver in ypserv:ume2005-05-023-27/+61
| | | | | - query AAAA RR on ipnodes.byname query. - query .ip6.arpa. on ipnodes.byaddr query.
OpenPOWER on IntegriCloud