summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Add msk(4) to the list of supported network interface.yongari2006-12-131-0/+1
|
* Fix a typo ceri found while reviewing and I forgot to commiterwin2006-12-111-1/+1
| | | | | | | | | | in the previous version. Submitted by: ceri, matteo Reviewed by: cperciva Also note that the last revision was: Reviewed by: ceri, simon
* Update the list of ports categories.erwin2006-12-111-24/+15
| | | | | | | | | This is an updated version of: PR: 85367 Submitted by: linimon Reviewed by: simon MFC after: 3 days
* Add a new turkish mirrorerwin2006-12-101-0/+4
| | | | | | Submitted by: Evren Yurtesen <yurtesen@ispro.net> Reviewed by: simon MFC after: 3 days
* Instead of explicitly initializing variables to avoid compiler warnings,syrinx2006-12-093-16/+42
| | | | | | | | | | | | | add a default case to handle the situation when the variables are not initialized. Furthermore, abort() if the snmp agent passes an invalid option to the bridge module. As the option (SET, GET, GETNEXT, COMMIT, ROLLBACK) is determined by the snmp agent based on the operation requested by user, this behaviour is unlikely to be abused as a source for a DoS, but if ever hit will likely reveal a problem in the snmp agent or bridge module. Approved by: bz (mentor)
* Add support for RSTP (RFC4318) to the SNMP bridge monitoring module.syrinx2006-12-0710-47/+1170
| | | | Approved by: bz (mentor)
* Flush my typo fix queue for this directory.ceri2006-12-054-4/+4
|
* Fix typos.ceri2006-12-052-3/+3
|
* Add ftp.il.freebsd.org to the IPv6 server section.erwin2006-12-021-0/+2
| | | | | | Submitted by: Rostislav Krasny <rosti.bsd@gmail.com> Reviewed by: simon (also previous commit) MFC: 3 days
* - Add israeli mirror [1]erwin2006-12-011-1/+6
| | | | | | | - Add an IPv6 main site now both ISC and TDC have IPv6 Submitted by: Rostislav Krasny <rosti.bsd@gmail.com> [1] MFC: 3 days
* Bump .Dd for revision 1.8.ceri2006-11-301-1/+1
|
* o Xr netconfig(5).maxim2006-11-291-0/+1
| | | | | | PR: docs/105720 Submitted by: koitsu MFC after: 1 week
* Increase USR_MIN_SIZE to 160 because it requires more disk space.nyan2006-11-281-1/+1
| | | | MFC after: 3 days
* Do not mark Bluetooth HID device as a "potential keyboard" if its descriptoremax2006-11-271-1/+1
| | | | | | | | | has items with CONSUMER page. For now only check for items with KEYBOARD page. This should prevent bthidd(8) from allocating vkbd(4) keyboard for Microsoft Bluetooth Explorer mouse. Reported by: Eric Anderson MFC after: 3 days
* Push the detection of threading libs support down to ngctl/Makefileru2006-11-272-6/+8
| | | | | | | as the latter can be built without threading (with the loss of line editing functionality). Pointed by: glebius
* Back out half of my previous change to support parallel makes.jb2006-11-271-0/+2
| | | | | The generated Makefile clashes with the src/bin/sh/Makefile, causing it to try to use a rule to build something it doesn't need to.
* add rate knob for net80211 rate control modulessam2006-11-261-0/+2
| | | | MFC after: 1 month
* Fix "make checkdpadd".ru2006-11-261-1/+1
|
* - When building world WITHOUT_LIBPTHREAD, link libthr to libpthread.ru2006-11-263-30/+32
| | | | | - Don't build ngctl(8) and cached(8) if threading libs aren't built. - Fix various issues in a cached(8) makefile.
* Three minor bug fixes:cperciva2006-11-251-8/+18
| | | | | | | | | | | | | | | | 1. When downloading metadata files, make sure we only download each file once; without this fix, "freebsd-update fetch" will fail the first time it is run if there have been no updates yet for the installed release. 2. If the FOO kernel is installed in /boot/kernel instead of /boot/FOO and the /boot/FOO directory does not exist, don't try to update /boot/FOO. This is an issue only where an update involves adding a new kernel module. 3. When removing files and directories, operate in reverse lexographical order, in order to ensure that files are removed before the directory which contains them. MFC after: 3 days
* Fix another parallel make problem with the generated make file.jb2006-11-241-9/+11
| | | | | | | | | | | | | Define the xxx_OBJPATHS earlier and then use it in the xxx_make target because each obj is actually made through that. This allows the crunch to work with -j32 on sun4v. The makefile generated is still poor, though. It really shouldn't use the general 'make all' to do the submakes in the app directories being crunched because each of those objects is listed as a dependency in the generated crunch makefile. Doing that really requires a unique rule to generate them.
* Oops - what people refer to as linux_base-fc4 calls itself linux_base-fckensmith2006-11-231-1/+1
| | | | | | and that's what pkg_add needs. MFC after: 1 day
* Add the SUBMAKE_TARGETS (like ppp_make) to the dependency listjb2006-11-221-1/+1
| | | | | | for linking the crunched app so that when a parallel make is run (like -j32 on sun4v), the link waits for the sub-make processes to complete.
* Remove reference to mount_fdescfs.rodrigc2006-11-221-2/+2
| | | | Reminded by: ru
* Change mount_devfs reference to "mount -t devfs".rodrigc2006-11-211-2/+2
| | | | Reminded by: ru
* Bring in a SNMP module to support monitoring if_bridge(4) interfacessyrinx2006-11-1912-0/+7979
| | | | | | | | | via bsnmpd(1). The module implements IETF BRIDGE-MIB as defined in RFC4188 and a private BEGEMOT-BRIDGE-MIB. Sponsored by: Google Summer of Code 2006 Reviewed by: bz Approved by: bz (mentor)
* Move the check for which disc volume we have/want to after we installkensmith2006-11-191-19/+15
| | | | | | | the package dependencies. Installation of the dependencies may leave us on the wrong disc volume. MFC after: 3 days
* Ignore SIGPIPE, instead of terminating process.rodrigc2006-11-181-0/+1
| | | | | | PR: 81230 Submitted by: Dmitrij Tejblum <tejblum yandex-team ru> MFC after: 1 month
* add wpa_passphrase utility to the buildsam2006-11-174-2/+87
| | | | | | PR: bin/104457 Submitted by: Henrik Brix Andersen MFC after: 1 week
* Switch to linux_base-fc4 for the Linux emulation package.kensmith2006-11-161-1/+1
| | | | MFC after: 3 days
* implemented more validation checks about incoming responses per RFC2080, and ↵suz2006-11-161-4/+78
| | | | | | | one additional heuristic check for safer operation. Obtained from: KAME MFC after: 1 week
* Grammar fix from Ceri.ru2006-11-161-1/+1
|
* Document that visual bell is the global setting, whileru2006-11-161-1/+5
| | | | other bell types can be set individually for each vty.
* Replace magic numbers for console bell types with defines.ru2006-11-161-3/+3
|
* Building faithd(8) has no sense if WITHOUT_INET6 is set.yar2006-11-151-1/+2
| | | | | PR: bin/100805 (audit-trail) Noticed by: Alex Kozlov
* The utility accepts multiple arguments.ru2006-11-131-3/+3
|
* - Grammar fixesmarkus2006-11-131-56/+74
| | | | | | | | | | | | - Reword some sentences - Use .Cm for arguments - s/CAVEAT/CAVEATS/ Based on PR: docs/78174 Submitted by: Jeremy Chadwick <freebsd@jdc.parodius.com> Reviewed by: brueffer Approved by: emax (mentor) MFC after: 3 days
* Change authors e-mail.joel2006-11-121-1/+1
| | | | Requested by: Niclas Zeising
* Teach an IPV6CP to pppd(8).ume2006-11-1210-81/+351
| | | | | | | | | | | The eui64.[ch] and ipv6cp.[ch] were taken from ppp-2.3.11. However, our stock pppd(8) doesn't provide option_t nor some utility functions. So, I made some hacks to adjust to our stock pppd(8). The sys_bsd.c part was taken from NetBSD with some modifications to adjust to our stock pppd(8). MFC after: 1 week
* This commit was generated by cvs2svn to compensate for changes in r164219,ume2006-11-124-0/+1741
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import eui64.[ch] and ipv6cp.[ch] of ppp-2.3.11ume2006-11-124-0/+1741
| |
| * Import user-mode parts of kernel ppp v2.3.5peter1998-06-205-42/+110
| | | | | | | | Obtained from: Paul Mackerras; ftp://cs.anu.edu.au/pub/software/ppp
| * Import ppp-2.3.3 pppstats onto vendor branchpeter1998-03-211-4/+0
| |
| * Import pppd from ppp-2.3.3 onto the vendor branch (on 1.1.2 hopefully)peter1998-03-213-17/+24
| |
| * Import pppstats from the ppp-2.3.1 distributionpeter1997-08-223-416/+637
| | | | | | | | Obtained from: Paul Mackerras <paulus@cs.anu.edu.au>
| * Import pppd-2.3.0 - this should not make much difference until it's mergedpeter1997-08-193-73/+466
| | | | | | | | onto the mainline, although some new files will appear.
| * This commit was manufactured by cvs2svn to create branch 'MACKERRAS'.cvs2svn1997-08-197-0/+2648
| |
| * recording cvs-1.6 file deathpeter1995-12-303-2223/+0
| |
| * Import pppd onto the vendor branch from the ppp-2.2 package..peter1995-10-311-5/+9
| |
| * This commit was manufactured by cvs2svn to create branch 'MACKERRAS'.cvs2svn1995-10-312-0/+702
| |
OpenPOWER on IntegriCloud