aboutsummaryrefslogtreecommitdiff
path: root/sbin/mdconfig/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Make WITHOUT_DYNAMICROOT=foo work again: remember to referencePoul-Henning Kamp2006-04-011-2/+2
| | | | | | | libbsdxml and libsbuf. Notes: svn path=/head/; revision=157375
* Teach md(4) and mdconfig(8) how to understand XML. Right now there won't beWojciech A. Koszek2006-03-261-2/+2
| | | | | | | | | | | | | | | 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) Notes: svn path=/head/; revision=157160
* - Make md(4) 64-bit clean.Pawel Jakub Dawidek2004-09-161-0/+3
| | | | | | | | | | | | After this change it should be possible to use very big md(4) devices. - Clean up and simplify the code a bit. - Use humanize_number(3) to print size of md(4) devices. - Add 't' suffix which stands for terabyte. - Make '-S' to really work with all types of devices. - Other minor changes. Notes: svn path=/head/; revision=135340
* Default to WARNS=2.David E. O'Brien2001-12-041-1/+0
| | | | | | | | | Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike Notes: svn path=/head/; revision=87325
* Constify mdmaybeload(), add a prototype for usage(), and get rid of aDima Dorfman2001-06-211-0/+1
| | | | | | | sizeof(int) == sizeof(long) assumption; clamp down with WARNS=2. Notes: svn path=/head/; revision=78526
* - Backout botched attempt to introduce MANSECT feature.Ruslan Ermilov2001-03-261-0/+1
| | | | | | | - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74815
* Set the default manual section for sbin/ to 8.Ruslan Ermilov2001-03-201-1/+0
| | | | Notes: svn path=/head/; revision=74531
* Make md(4) and mdconfig(8) take over the role of vn(4) and vnconfig(8)Poul-Henning Kamp2001-03-091-2/+1
| | | | | | | | | | entirely as previously advertised. md(4) adopted all assets of vn(4) some time back and has proper devfs support and cloning abilities to boot. Notes: svn path=/head/; revision=74047
* Improve cmdline parsing and messages.Poul-Henning Kamp2000-12-311-2/+1
| | | | | | | | Add a rudimentary man-page. (I'm no mdoc wizard, feel free to attack my mistakes and blunders) Notes: svn path=/head/; revision=70538
* Preliminary scaffolding for the new integrated vn+md device driver.Poul-Henning Kamp2000-12-281-0/+9
I decided to work on the md(4) driver and integrate the vn(4) functionality into it mainly based on the name being more suitable. Ideally 'vd' as in "virtual disk" would probably be the most logical but our sound-master pointed out that this would cause uncontrollable fits of giggles in the brits. Another complication would the needed changes to the ramdisk boot/root functionality. The vn driver will stay around for some time after I complete this merge for transition reasons, and I'll make it whine to people that they should migrate to the md(4) driver for some time before it dies. The kernel part of the new md(4) driver will be committed after more testing. Notes: svn path=/head/; revision=70448