summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* mount_msdosfs.c:rodrigc2006-06-011-10/+0
| | | | | | | | | | | | | | - remove call to getmntopts(), and just pass -o options to nmount(). This removes some confusion as to what options msdosfs can parse, by pushing the responsibility of option parsing to the VFS and FS specific code in the kernel. msdosfs_vfsops.c: - add "force" and "sync" to msdosfs_opts. They used to be specified in mount_msdosfs.c, so move them here. It's not clear whethere these options should be placed into global_opts in vfs_mount.c or not. Motivated by: marcus
* Make recoverdisk compile on amd64 and possibly other 64bit archs.matteo2006-05-302-5/+5
| | | | | | | | Bump WARNS to 6. PR: amd64/97566 Reviewed by: phk@ MFC after: 3 days
* Implement internal (i.e. inside kernel) packet tagging using mbuf_tags(9).oleg2006-05-242-9/+133
| | | | | | | | | | | Since tags are kept while packet resides in kernelspace, it's possible to use other kernel facilities (like netgraph nodes) for altering those tags. Submitted by: Andrey Elsukov <bu7cher at yandex dot ru> Submitted by: Vadim Goncharov <vadimnuclight at tpu dot ru> Approved by: glebius (mentor) Idea from: OpenBSD PF MFC after: 1 month
* Remove 'n' from the getopt string. There's no -n option that isimp2006-05-231-2/+2
| | | | | | parsed, so it winds up at usage anyway. Add 'b' to the usage summary. Noticed by Ben Mesander.
* do_file() is called recursively from several places and cannotdelphij2006-05-201-1/+9
| | | | | | | | safely free() anything related to items that may be recursed on. Obtained from: DragonFly (rev 1.7, dillon) PR: bin/94767 MFC After: 1 month
* Remove reference to mount_procfs(8), add reference to procfs(5).rodrigc2006-05-191-1/+1
| | | | | mount(8) doesn't use mount_procfs(8), and instead passes an fstype of "procfs" directly to nmount().
* Slight grammar fix.ceri2006-05-181-1/+1
|
* Remove reference to mount_ext2fs(8), add reference to ext2fs(5).rodrigc2006-05-171-1/+1
| | | | | mount no longer invokes mount_ext2fs, it calls nmount() directly with fstype "ext2fs".
* Disconnect mount_reiserfs from build.rodrigc2006-05-161-1/+0
| | | | | | | | It is no longer needed, because "mount -t reiserfs" calls nmount(2) directly to mount a ReiserFS file system without the use of this external mount program. Approved by: dumbbell
* For src/dest parsing take off the netmask before checking for AF withmlaier2006-05-141-15/+31
| | | | | | | inet_pton. This fixes cases like "fe02::/16". PR: bin/91245 Reported by: Fredrik Lindberge
* Correct various mistakes in the last commit.pjd2006-05-131-4/+4
|
* Include other AES key lengths in the comment.pjd2006-05-131-1/+1
|
* Remove ip6fw. Since ipfw has full functional IPv6 support now and - inmlaier2006-05-125-2072/+0
| | | | contrast to ip6fw - is properly lockes, it is time to retire ip6fw.
* Update manpage for net.inet6.ip6.fw.enable sysctl.mlaier2006-05-121-2/+4
| | | | Requested by: bz
* Use sysctlbynamephk2006-05-111-25/+14
|
* o Extend rev. 1.75 and restore an ability to specify a non-defaultmaxim2006-05-101-0/+9
| | | | | | quota files location. Submitted by: Kostik Belousov
* Be more like Windows and Linux and send our hostname in the host-namebrooks2006-05-071-0/+68
| | | | | | | | | option if none is given in the config file. Also add #ifdefd out support for sending a client ID based on our MAC address. PR: bin/94743, bin/76401 Submitted by: Frank Behrens <frank at pinky dot sax dot de> X-MFC after: 6.1-RELEASE
* fix style nitobrien2006-05-071-1/+1
|
* o Take an account a media sectorsize for medium and bigsize calculation.maxim2006-05-063-45/+290
| | | | | | | | | | o Introduce -r and -w keys which allow to load and save a worklist. o Replace README by man page. PR: bin/96677 Submitted by: Ulrich Spoerlein Approved by: phk MFC after: 1 month
* Correct error messages.pjd2006-05-011-4/+4
| | | | MFC after: 2 weeks
* With minidumps, the dumping partition could be smaller than physicalps2006-04-271-1/+8
| | | | | | memory, so checking the size of the partition is not necessary. Tested by: kris
* o Do recrack(arguments) for commands which actually take NAME asmaxim2006-04-213-10/+12
| | | | | | | | | | | arguments so we do not coredump at "help foo", "back bar" and such. o Be consistent and print argc - 1 as a command arguments number in all cases. PR: bin/37096 Submitted by: Joshua Goodall MFC after: 1 month
* Add a missing .Pp call.brueffer2006-04-191-0/+1
| | | | MFC after: 3 days
* o Describe what actually boot(8) -m mutes.maxim2006-04-181-1/+2
| | | | | | PR: docs/67893 Submitted by: Chris Pepper, Daniel Gerzo MFC after: 2 weeks
* Fix markup and some typos.ru2006-04-141-5/+14
|
* o Yacc's lineno variable holds a total number of parsed lines.maxim2006-04-141-0/+1
| | | | | | | | Reset it to 1 for each devd config file so if the parser finds a syntax error devd(8) will report a correct line number. Submitted by: Niki Denev MFC after: 2 weeks
* Make CCD be able to read and write Linux software raids.cracauer2006-04-132-0/+26
| | | | | | | | | | Supported for raid-0 with <n> disks, raid-1 with 2 disks. Manpages have examples, warnings etc. Test scripts on http://www.cons.org/cracauer/ccdconfig-linux/ Reviewed by: alfred
* Add missing library dependencies.ru2006-04-132-1/+2
|
* libc_r is no longer provided, and on alpha and sparc64, libthrru2006-04-121-1/+1
| | | | | is (sym)linked to libpthread. Account for this change and check for MK_LIBTHR instead of MK_LIBC_R where appropriate.
* Dump keeps a bitmap of the state of various inodes, which is sizeddwmalone2006-04-111-8/+20
| | | | | | | | | | to match the number of inodes on the disk. If we find a directory entry with a crazy inode number in it, don't look beyond the end of the bitmap to find that inode's state. Instead skip that directory entry and print a warning. Reviewed by: iedowse MFC after: 3 weeks
* Document the rest of the 802.11 capability flags.scottl2006-04-081-0/+18
|
* Allocate memory for NUL-termination as well.pjd2006-04-071-1/+1
| | | | MFC after: 2 days
* Add a new feature to ping(8) - possibility to specify maximumglebius2006-04-052-8/+35
| | | | | | | | | | wait time for a packet. This allows to: - Count number of packets received before and after specified time. - Shorten time of execution of 'ping -c 1' scripts. Submitted by: Lytochkin Boris <lytboris gmail.com>
* Make WITHOUT_DYNAMICROOT=foo work again: remember to referencephk2006-04-011-2/+2
| | | | libbsdxml and libsbuf.
* Amazing.. two screwups in one commit.julian2006-03-311-1/+2
| | | | | I'm piling on thise pointy hats on top of each other. At least they nest..
* I can't believe that no-one noticed that I broke ipfw table deljulian2006-03-311-1/+2
| | | | | for over a month! put {} around if clause with multiple statements
* Unbreak the build.jasone2006-03-271-6/+1
|
* For now, bring back some of the old bits as a fix for specifying md(4)wkoszek2006-03-271-0/+7
| | | | | | | | | device number at creation time with -u option. Together with XMLizing mdconfig(8), I broke this functionality. This change is temporary. Complete fix will be commited soon. Approved by: cognet (mentor)
* Teach md(4) and mdconfig(8) how to understand XML. Right now there won't bewkoszek2006-03-262-65/+158
| | | | | | | | | | | | a problem with listing large number of md(4) devices. Either 'list' or 'query' mode uses XML. Additionally, new functionality was introduced. It's possible to pass multiple devices to -u: # ./mdconfig -l -u md0,md1 Approved by: cognet (mentor)
* Keep proper order of includes. Additionally, sort them. Make functions usedwkoszek2006-03-261-23/+20
| | | | | | in that file static. Approved by: cognet (mentor)
* Implement the 'resetconfig' command.le2006-03-232-4/+45
| | | | | PR: kern/94835 Submitted by: Ulf Lilleengen <lulf@stud.ntnu.no>
* Unbreak WITHOUT_LIBPHREAD/WITHOUT_LIBC_R option support, dependingru2006-03-211-1/+6
| | | | on platform.
* Minor style(9) and KNF elimination as I prepare to fix a bug.imp2006-03-201-14/+8
|
* Extend coverage of the MK_IPX build option to the following:ru2006-03-201-1/+3
| | | | | | | | | | | | | | | | | | | | | - <netipx> headers [1] - IPX library (libipx) - IPX support in ifconfig(8) - IPXrouted(8) - new MK_NCP option New MK_NCP build option controls: - <netncp> and <fs/nwfs> headers - NCP library (libncp) - ncplist(1) and ncplogin(1) - mount_nwfs(8) - ncp and nwfs kernel modules User knobs: WITHOUT_IPX, WITHOUT_IPX_SUPPORT, WITHOUT_NCP. [1] <netsmb/netbios.h> unconditionally uses <netipx> headers so they are still installed. This needs to be dealt with.
* Reimplementation of world/kernel build options. For details, see:ru2006-03-174-8/+16
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* Add new modes.sos2006-03-151-0/+4
|
* There is no IFF_POLLING flag anymore.glebius2006-03-121-1/+1
|
* Flush stdout after printing name of created device, so it can be properlypjd2006-03-121-1/+3
| | | | | | | | read when 'ggatec create' is used in backticks or its output is piped to another command. Submitted by: Paul Schenkeveld MFC after: 3 days
* Revert to setting vlan and vlandev parametes synchronously, as soonyar2006-03-091-0/+9
| | | | | | | | | | | | | | | as both have been read from the command line. Still use the callback, but this time only to verify that both vlan and vlandev have been found on the command line. This should allow for control over the relative order of processing parameters, which is needed to satisfy some caveats of the if_vlan driver. E.g., MTU cannot be changed on a vlan interface until it's attached to its parent. PR: bin/94028 Reviewed by: ru MFC after: 3 days
* Explain why the first partition should start at offset 16.pjd2006-03-081-0/+2
| | | | Requested by: hrs
OpenPOWER on IntegriCloud