summaryrefslogtreecommitdiffstats
path: root/sbin/ccdconfig
Commit message (Collapse)AuthorAgeFilesLines
* Sweep man pages replacing ad -> ada.pluknet2013-10-011-2/+2
| | | | | | Approved by: re (blackend) MFC after: 1 week X-MFC note: stable/9 only
* Cross-reference gvinum(8) instead of vinum(8).joel2013-03-161-3/+3
|
* Check the return error of set[e][ug]id. While this can never fail in theeadler2012-10-221-3/+6
| | | | | | | | | | current version of FreeBSD, this isn't guarenteed by the API. Custom security modules, or future implementations of the setuid and setgid may fail. Submitted by: Erik Cederstrand Approved by: cperciva MFC after: 3 days
* Add missing static keywords for global variables to tools in sbin/.ed2011-11-041-1/+1
| | | | | | These tools declare global variables without using the static keyword, even though their use is limited to a single C-file, or without placing an extern declaration of them in the proper header file.
* mdoc: drop redundant .Pp and .LP callsuqs2010-10-081-2/+0
| | | | They have no effect when coming in pairs, or before .Bl/.Bd
* Remove dead variable assignmentsuqs2010-06-111-2/+1
| | | | | Found by: clang static analyzer Verified by: md5(1)
* Switch the default WARNS level for sbin/ to 6.ru2009-10-191-1/+0
| | | | Submitted by: Ulrich Spörlein
* Fix markup and some typos.ru2006-04-141-5/+14
|
* 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
* 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
* Garbage collect useless variables.stefanf2005-08-051-2/+0
|
* Spell "partition" correctly.keramida2005-07-281-1/+1
| | | | | | PR: docs/84198 Submitted by: Gary W. Swearingen MFC after: 3 days
* Sync program's usage() with manpage's SYNOPSIS.ru2005-02-102-8/+6
|
* Sort sections.ru2005-01-181-10/+10
|
* Fixed display types.ru2005-01-151-5/+5
|
* Replace link to nonexistent raid(4) with one to geom(8). I don't likedd2004-10-311-2/+1
| | | | | | | | implying that geom(8) is a RAID solution, but it can be used for that purpose, and a pointer in that direction is better than nothing. PR: 73088 Submitted by: Miguel Mendez <flynn@energyhq.es.eu.org>
* Deal with double whitespace.ru2004-07-031-1/+1
|
* Mechanically kill hard sentence breaks.ru2004-07-021-20/+40
|
* Remove advertising clause from University of California Regent's license,markm2004-04-091-4/+0
| | | | | | per letter dated July 22, 1999. Approved by: core, imp
* Try to catch up with device name changes due to GEOM'ification. Removeobrien2003-12-081-14/+19
| | | | | | note about requirement of operating on 'c' partition, GEOM removed this. Mention RAIDframe, don't mention DPT hardware RAID as a good alternative.
* Make this WARNS=6 clean by renaming the variable 'err' to 'error'johan2003-08-072-7/+7
| | | | | | in order not to shadow err(3). Tested by: make universe
* Be consistent about module names.phk2003-06-091-2/+2
|
* GEOMification of CCD.phk2003-06-091-165/+69
| | | | | You need your kernel and ccdconfig(8) to be in sync, particularly if your source tree is on a ccd device.
* Further devilification of CCD:phk2003-06-021-122/+29
| | | | | | | Change the list interface to simplify things. Remove old list ioctls which bogusly exported the softc to userland. Move the softc and associated structures from the public header to the source file.
* Use GEOM OAM api to retrive list of configured ccd devices.phk2003-06-022-0/+22
| | | | Link against libgeom.
* Use __FBSDID() to quiet GCC 3.3 warnings.obrien2003-05-031-4/+2
|
* Don't pick the name out of the devstat member of the ccd softc, it willphk2003-03-061-2/+1
| | | | disappear soon. Exporting the softc in the first place is a mistake.
* mdoc(7) police: markup laundry.ru2003-02-231-3/+6
|
* Convert references to other manpages to .Xr and addkeramida2003-01-261-4/+7
| | | | entries to the SEE ALSO section.
* Fix two errorchecks to check for negative error returns.phk2003-01-181-2/+2
|
* Find places to store the previously implicityly passed unit number inphk2003-01-172-18/+21
| | | | | | | | | | | | | | | | | | | the three configuration ioctls which need a unit number. Add a "ccd.ctl" device for config operations. Implement ioctls on ccd.ctl which rely on the explicityly passed unit numbers. Update ccdconfig to use the new ccd.ctl interface. Add code to the kernel to detect old ccdconfig binaries, and whine about it. Add code to ccdconfig to detect old kernels, and whine about it. These two compatibility measures will be retained only for a limited period since they are in the way of GEOM'ification of ccd.
* Fix various details so we get to WARNS=3.phk2003-01-172-83/+33
| | | | Center operation on unit number rather than path name.
* I don't know where we got this ccd creation example from... or if it wasobrien2003-01-101-2/+9
| | | | | ever correct. It certainly hasn't been correct for *years*, and it conflicts with the FAQ. So update this example to match the FAQ.
* Remove CCDF_SWAP and CCDF_PARITY. They have never been implemented.phk2003-01-032-4/+0
|
* s/filesystem/file system/g as discussed on -developerstrhodes2002-08-211-1/+1
|
* The .Nm utilitycharnier2002-07-061-7/+11
|
* o __P removal.imp2002-03-181-41/+24
| | | | | o Use ANSI function definitions. o main(int, char *[])
* Default to WARNS=2.obrien2001-12-041-0/+1
| | | | | | Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike
* Spelling police: "more then" - "more than" where appropriate.dd2001-11-241-1/+1
|
* Removed -M and -N from getopt(3) call as well.ru2001-09-111-1/+1
|
* Duh! forgot this bit of the NCCD patch.phk2001-09-043-152/+83
| | | | | Submitted by: sobomax Reviewed by: phk
* SECURITY: Drop `setgid kmem' bit as early as possible.ru2001-08-311-0/+2
|
* Remove whitespace at EOL.dd2001-07-151-4/+4
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.dd2001-07-091-4/+0
|
* Removed -I${.CURDIR}/.../sys from CFLAGS.ru2001-05-181-1/+0
|
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-0/+1
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for sbin/ to 8.ru2001-03-201-2/+2
|
* Prepare for mdoc(7)NG.ru2001-01-161-2/+2
|
* Prepare for mdoc(7)NG.ru2000-12-271-4/+1
|
OpenPOWER on IntegriCloud