Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: 4f0d95fa6ee7f865597c03b9e63702cdcb0f7067 Component: engine
15 lines
310 B
Go
15 lines
310 B
Go
// +build linux,btrfs_noversion
|
|
|
|
package btrfs // import "github.com/docker/docker/daemon/graphdriver/btrfs"
|
|
|
|
// TODO(vbatts) remove this work-around once supported linux distros are on
|
|
// btrfs utilities of >= 3.16.1
|
|
|
|
func btrfsBuildVersion() string {
|
|
return "-"
|
|
}
|
|
|
|
func btrfsLibVersion() int {
|
|
return -1
|
|
}
|