summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
* FreeBSD unconditionally supports write filters now.csjp2005-08-231-2/+0
|
* By default, when doing crypto work in software, start as many threadspjd2005-08-211-1/+3
| | | | | | as we have active CPUs and bind each thread to its own CPU. MFC after: 3 days
* Remove reference to raid(4), the RAIDframe manual page, which wassimon2005-08-201-1/+0
| | | | | | | | deleted a while ago. PR: docs/85142 Submitted by: Jeremy Chadwick <freebsd@jdc.parodius.com> MFC after: 3 days
* Allow to change number of iterations for PKCS#5v2. It can only be usedpjd2005-08-192-23/+64
| | | | | | when there is only one key set. MFC after: 3 days
* Move function for calculating number of bits into more central place.pjd2005-08-193-6/+14
| | | | | | I want to use it so more. MFC after: 3 days
* Add the ability to specify the boot2 serial console speed iniedowse2005-08-181-4/+22
| | | | | | | | /boot.config or on the "boot:" prompt line via a "-S<speed>" flag, e.g. "-h -S19200". This adds about 50 bytes to the size of boot2 and required a few other small changes to limit the size impact. This changes only affects boot2; there are further loader changes to follow.
* Update manual page (now dedicated kernel thread is always started).pjd2005-08-171-2/+0
| | | | MFC after: 3 days
* Clarify how the 'channel' argument should look like and add anbrueffer2005-08-161-2/+7
| | | | | | | | | example on how to obtain information on devices on an ata channel. PR: 84676 Submitted by: Kevin Oberman <oberman@es.net> Jeremie Le Hen <jeremie@le-hen.org> MFC after: 3 days
* Implement a new feature for ping(8) - sweeping pings. In a sweepingglebius2005-08-152-7/+117
| | | | | | | | | ping ICMP payload of packets being sent is increased with given step. Sweeping pings are useful for testing problematic channels, MTU issues or traffic policing functions in networks. PR: bin/82625 Submitted by: Chris Hellberg <chellberg juniper.net> (with some cleanups)
* Attempt to improve the logic for automatically sizing partitionsiedowse2005-08-141-5/+62
| | | | | | | | | | | | to take into account the new default of starting the first partition after the boot blocks instead of at sector 0. If you used automatic sizing when the first partition did not start at 0, you would get an error that the automatically sized partition extended beyond the end of the disk. Note that there are probably still many more complex cases where automatic sizing and placement will not work (e.g. non-contiguous or out of order partitions).
* Unfortunately dlerror(3) returns string, so there is no clean way topjd2005-08-141-11/+12
| | | | | | | | | | ignore "no such file" errors only, which I wanted to do. Because of this I ignored all other errors on dlopen(3) failure as well, which isn't good. Fix this situation by calling access(2) on library file first and ignore only ENOENT error. This allows to report all the rest of dlopen(3) errors. MFC after: 3 days
* Don't treat failure to find the operator GID as a fatal error; thisiedowse2005-08-141-4/+9
| | | | | made it impossible to use newfs (and mdmfs) when /etc/group is missing and /etc is read-only.
* When keys were configured without passphrase, number of iterations inpjd2005-08-141-0/+4
| | | | | | | | | | metadata is equal to -1. if we then wanted to attach provider (or change keys) and forget about '-p' flag it failed on assertion (quite ok, without assertion it could call PKCS#5v2 with 4294967295 iterations). Instead of failing on assertion, remind about '-p' flag. MFC after: 3 days
* Document two missed if_bridge commands 'addr' and 'static'.thompsa2005-08-141-0/+7
| | | | | | Noticed by: Michal Mertl Approved by: mlaier (mentor) MFC after: 3 days
* add list mac and mac:kick supportsam2005-08-132-10/+98
| | | | | Submitted by: Michal Mertl (original version) MFC after: 2 weeks
* * Add dynamic sysctl for net.inet6.ip6.fw.bz2005-08-132-3/+89
| | | | | | | | | | | | | * Correct handling of IPv6 Extension Headers. * Add unreach6 code. * Add logging for IPv6. Submitted by: sysctl handling derived from patch from ume needed for ip6fw Obtained from: is_icmp6_query and send_reject6 derived from similar functions of netinet6,ip6fw Reviewed by: ume, gnn; silence on ipfw@ Test setup provided by: CK Software GmbH MFC after: 6 days
* GELI doesn't need cryptodev.pjd2005-08-121-1/+0
| | | | MFC after: 2 days
* Add code for Ext2FS and ReiserFS labels recognition.pjd2005-08-121-0/+6
| | | | | | Submitted by: Stanislav Sedov <stas@310.ru> PR: kern/84638 MFC after: 1 week
* The libedit update made a const cast necessary.stefanf2005-08-071-1/+1
|
* Fix status to report status from the given array.sos2005-08-051-3/+8
|
* Use socklen_t where appropriate.stefanf2005-08-051-2/+3
|
* Garbage collect useless variables.stefanf2005-08-052-4/+1
|
* Use the C99 syntax for designated initialisers.stefanf2005-08-051-8/+8
|
* Fix commen typos.stefanf2005-08-031-4/+4
|
* Add missing check for the NO_CRYPT build option.ru2005-08-021-0/+2
| | | | Reported by: Alexander Polakov
* Wireless suport fixups: add a bunch of stuff that's been in thesam2005-08-021-14/+209
| | | | | | | code but not documented (e.g. wme, mac acl) and correct some information, etc. Reviewed by: brueffer
* acm and ack are specified per-acsam2005-08-011-8/+18
| | | | MFC after: 3 days
* Correct the description of the TAPE environment variable.ceri2005-07-311-1/+5
| | | | | | | | Based on: PR: docs/84200 Submitted by: Gary W. Swearingen <garys at opusnet dot com> MFC after: 1 week
* Misc cleanup (spelling, grammar, mdoc, style, cut >80 char lines).brueffer2005-07-301-83/+93
|
* oops, revert previous changesam2005-07-301-7/+0
|
* MFC: add fragthreshold parameter and accept - (or any) for rtsthresholdsam2005-07-301-0/+7
| | | | Approved by: re (kensmith)
* Update manual page after ggate rewrite.pjd2005-07-291-7/+6
| | | | MFC after: 1 day
* I actually do need libmd.pjd2005-07-291-2/+2
|
* Further fix receive_packet() by using BPF_WORDALIGN to insure the offsetbrooks2005-07-281-5/+15
| | | | | | is properly aligned when we move to the next packet. Obtained from: ISC dhclient via krw at OpenBSD
* Spell "partition" correctly.keramida2005-07-282-2/+2
| | | | | | PR: docs/84198 Submitted by: Gary W. Swearingen MFC after: 3 days
* Don't reject packets with server names containing characters that arebrooks2005-07-281-7/+6
| | | | | | | not allowed in domain names. RFC 2132 does not list valid or invalid characters and the ISC client accepts anything here. Reported by: ps
* I think I found the problem, reconnect geli to the build.pjd2005-07-271-1/+1
|
* - Reduce WARNS level to 3, so it will be compilabe on alpha.pjd2005-07-271-3/+4
| | | | | | | - Don't link libmd, it is not needed. - Connect manual page to the build. MFC after: 1 week
* Disconnect geli from the build for now.pjd2005-07-271-1/+1
| | | | | I need to find out first what is the cause of sha2.c compilation problem on alpha.
* Connect GEOM_ELI class to the build.pjd2005-07-271-0/+1
| | | | MFC after: 1 week
* Add GEOM_ELI class which provides GEOM providers encryption.pjd2005-07-273-0/+1774
| | | | | | | | For features list and usage see manual page: geli(8). Sponsored by: Wheel Sp. z o.o. http://www.wheel.pl MFC after: 1 week
* Fix a bug in the handling of cases where we got a short (or zero)brooks2005-07-271-4/+4
| | | | | | | | capture. Zero length captures caused an infinte loop and short captures probably caused memory corruption and a crash. Reported by: many MFC After: 3 days
* s/if_defaulroute/if_defaultroute/brooks2005-07-261-1/+1
| | | | We may now handle route updates better.
* o add fragthreshold support now that the ioctl existssam2005-07-261-1/+16
| | | | | | o accept rtsthreshold - (or any) as a shorthand for rtsthreshold 2346 MFC after: 3 days
* Change host-name from type "X" to type "t". This allows the client tobrooks2005-07-251-1/+2
| | | | | | | | | | | | | | | | | accept NUL-terminated strings as required by RFC 2132. This solution is not perfect as it removes the ability to send NUL-terminated host-name options which may be required by some broken servers. Given the current lack of an existance proof of such servers and the fact that servers that send NUL-terminated domain names do exist, this seems like an acceptable compromise. A discussion of these issues can be found at: http://marc.theaimsgroup.com/?l=dhcp-client&m=96837107208382&w=2 PR: bin/83468 Reported by: Sean Winn <sean at gothic dot net dot au> MFC-after: 3 days
* treat REASSOC events just like ASSOCsam2005-07-251-0/+1
| | | | MFC after: 3 days
* Interpret correctly the glob(3) return value.dds2005-07-211-1/+7
| | | | | | | Previously, interactive commands specifying a non-existent file or directory used to display an "out of memory error". MFC after: 2 weeks
* Bump document date.marks2005-07-201-1/+1
| | | | Reminded by: ru
* Document -b flag of dhclient.marks2005-07-201-0/+4
| | | | | Reviewed by: ru MFC after: 3 days
* Merged from src/sbin/fdisk.nyan2005-07-152-28/+45
| | | | - Attempt gctl verb "write MBR" when updating.
OpenPOWER on IntegriCloud