diff options
author | Brian Behlendorf <[email protected]> | 2011-03-04 15:14:46 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-03-09 15:26:48 -0800 |
commit | d53368f6755ff67342f68e2e536c4157409fd047 (patch) | |
tree | be909c931e465df4757a67f9329ab9e2b1dc6941 /cmd/Makefile.in | |
parent | adf2e8778e66e6a749cec981da00463b342bd563 (diff) |
Fix mount helper
Several issues related to strange mount/umount behavior were reported
and this commit should address most of them. The original idea was
to put in place a zfs mount helper (mount.zfs). This helper is used
to enforce 'legacy' mount behavior, and perform any extra mount argument
processing (selinux, zfsutil, etc). This helper wasn't ready for the
0.6.0-rc1 release but with this change it's functional but needs to
extensively tested.
This change addresses the following open issues.
Closes #101
Closes #107
Closes #113
Closes #115
Closes #119
Diffstat (limited to 'cmd/Makefile.in')
-rw-r--r-- | cmd/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/Makefile.in b/cmd/Makefile.in index 2dcf6a659..91200b4ad 100644 --- a/cmd/Makefile.in +++ b/cmd/Makefile.in @@ -292,7 +292,8 @@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -SUBDIRS = zfs zpool zpool_id zpool_layout zdb zinject ztest zpios zvol_id +SUBDIRS = zfs zpool zdb zinject ztest zpios mount_zfs zpool_layout \ + zvol_id zpool_id all: all-recursive .SUFFIXES: |