diff options
author | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2004-05-20 10:09:56 +0000 |
---|---|---|
committer | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2004-05-20 10:09:56 +0000 |
commit | 05c9107607357aabe7ac14b970080d2f8a7b66c9 (patch) | |
tree | b820f9f059fcb3b08d74ac32456e837299fd965a /sbin/geom/Makefile | |
parent | 2c88a61c15a853efdef27ff446dcdbb5be0ffbac (diff) | |
download | src-05c9107607357aabe7ac14b970080d2f8a7b66c9.tar.gz src-05c9107607357aabe7ac14b970080d2f8a7b66c9.zip |
Bring in geom(8) utility. It is an universal utility for operating on
GEOM classes. It works by loading a shared library via dlopen(3) mechanism
with class-specific code, it is also responsible for communicating with
GEOM via libgeom(3).
Per-class shared libraries are going to be stored in /lib/geom/ directory.
It provides also few standard commands like 'list', 'load' and 'unload'
for existing classes which aren't aware of geom(8).
More info will be send on freebsd-current@ mailing list.
Supported by: Wheel - Open Technologies - http://www.wheel.pl
Notes
Notes:
svn path=/head/; revision=129470
Diffstat (limited to 'sbin/geom/Makefile')
-rw-r--r-- | sbin/geom/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sbin/geom/Makefile b/sbin/geom/Makefile new file mode 100644 index 000000000000..95f00d914756 --- /dev/null +++ b/sbin/geom/Makefile @@ -0,0 +1,5 @@ +# $FreeBSD$ + +SUBDIR= core class + +.include <bsd.subdir.mk> |