diff options
author | phk <phk@FreeBSD.org> | 2001-03-09 20:09:28 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2001-03-09 20:09:28 +0000 |
commit | 553d1d6989f2adecf3c4cf0385b10a4ea9967bfb (patch) | |
tree | a96b1fbe96fdc152f2b79d72d268b37bd7ffc21a /sbin | |
parent | 54384d998a621329ef58a23ff0bb1031122849c0 (diff) | |
download | FreeBSD-src-553d1d6989f2adecf3c4cf0385b10a4ea9967bfb.zip FreeBSD-src-553d1d6989f2adecf3c4cf0385b10a4ea9967bfb.tar.gz |
Make md(4) and mdconfig(8) take over the role of vn(4) and vnconfig(8)
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.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/mdconfig/Makefile | 3 | ||||
-rw-r--r-- | sbin/mdconfig/mdconfig.8 | 15 |
2 files changed, 16 insertions, 2 deletions
diff --git a/sbin/mdconfig/Makefile b/sbin/mdconfig/Makefile index 38fa2ca..ebd8237 100644 --- a/sbin/mdconfig/Makefile +++ b/sbin/mdconfig/Makefile @@ -2,7 +2,6 @@ PROG= mdconfig MAN8= mdconfig.8 -#CFLAGS+= -g -static -Wall -#MLINKS= mdconfig.8 swapfile.8 mdconfig.8 vnconfig.8 +MLINKS= mdconfig.8 vnconfig.8 .include <bsd.prog.mk> diff --git a/sbin/mdconfig/mdconfig.8 b/sbin/mdconfig/mdconfig.8 index b081be0..d10fd62 100644 --- a/sbin/mdconfig/mdconfig.8 +++ b/sbin/mdconfig/mdconfig.8 @@ -175,3 +175,18 @@ chmod 1777 /tmp .Xr disklabel 8 , .Xr fdisk 8 , .Xr malloc 9 +.Sh HISTORY +The +.Nm +first appeared in +.Fx 5.0 +as a cleaner replacement for the +.Xr vn 4 +and +.Xr vnconfig 8 +combo. +.Sh AUTHORS +The +.Nm +program was written by Poul-Henning Kamp +.Aq phk@FreeBSD.org . |