Browse code

runtime: no build tags for vfs driver

Docker-DCO-1.1-Signed-off-by: Vincent Batts <vbatts@redhat.com> (github: vbatts)

Vincent Batts authored on 2014/03/15 05:10:07
Showing 3 changed files
... ...
@@ -160,11 +160,6 @@ export DOCKER_BUILDTAGS='apparmor'
160 160
 There are build tags for disabling graphdrivers as well. By default, support
161 161
 for all graphdrivers are built in.
162 162
 
163
-To disable vfs
164
-```bash
165
-export DOCKER_BUILDTAGS='exclude_graphdriver_vfs'
166
-```
167
-
168 163
 To disable devicemapper
169 164
 ```bash
170 165
 export DOCKER_BUILDTAGS='exclude_graphdriver_devicemapper'
... ...
@@ -17,6 +17,7 @@ import (
17 17
 	"github.com/dotcloud/docker/runtime/execdriver/lxc"
18 18
 	"github.com/dotcloud/docker/runtime/graphdriver"
19 19
 	_ "github.com/dotcloud/docker/runtime/graphdriver/btrfs"
20
+	_ "github.com/dotcloud/docker/runtime/graphdriver/vfs"
20 21
 	_ "github.com/dotcloud/docker/runtime/networkdriver/lxc"
21 22
 	"github.com/dotcloud/docker/runtime/networkdriver/portallocator"
22 23
 	"github.com/dotcloud/docker/utils"
23 24
deleted file mode 100644
... ...
@@ -1,7 +0,0 @@
1
-// +build !exclude_graphdriver_vfs
2
-
3
-package runtime
4
-
5
-import (
6
-	_ "github.com/dotcloud/docker/runtime/graphdriver/vfs"
7
-)