diff options
author | Wojciech A. Koszek <wkoszek@FreeBSD.org> | 2006-03-26 23:21:11 +0000 |
---|---|---|
committer | Wojciech A. Koszek <wkoszek@FreeBSD.org> | 2006-03-26 23:21:11 +0000 |
commit | c27a89543317fff77f5fde1423b4c7053303075e (patch) | |
tree | 6b0b81c9335360ab57fddb6cc097e81ba548f541 /sbin/mdconfig/Makefile | |
parent | 4bfd989f3e485e1c2f124342df8983e0ad6b2c14 (diff) | |
download | src-c27a89543317fff77f5fde1423b4c7053303075e.tar.gz src-c27a89543317fff77f5fde1423b4c7053303075e.zip |
Teach md(4) and mdconfig(8) how to understand XML. Right now there won't be
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
Notes:
svn path=/head/; revision=157160
Diffstat (limited to 'sbin/mdconfig/Makefile')
-rw-r--r-- | sbin/mdconfig/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mdconfig/Makefile b/sbin/mdconfig/Makefile index 1d5aff263653..636265cf0405 100644 --- a/sbin/mdconfig/Makefile +++ b/sbin/mdconfig/Makefile @@ -4,7 +4,7 @@ PROG= mdconfig MAN= mdconfig.8 MLINKS= mdconfig.8 vnconfig.8 -DPADD= ${LIBUTIL} -LDADD= -lutil +DPADD= ${LIBUTIL} ${LIBGEOM} +LDADD= -lutil -lgeom .include <bsd.prog.mk> |