2016-03-25 23:38:00 +00:00
|
|
|
// +build !linux,!windows,!freebsd,!solaris
|
2015-01-15 21:40:39 +00:00
|
|
|
|
|
|
|
package graphdriver
|
|
|
|
|
2015-04-24 19:35:51 +00:00
|
|
|
var (
|
|
|
|
// Slice of drivers that should be used in an order
|
|
|
|
priority = []string{
|
|
|
|
"unsupported",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2015-07-21 22:21:05 +00:00
|
|
|
// GetFSMagic returns the filesystem id given the path.
|
2015-01-15 21:40:39 +00:00
|
|
|
func GetFSMagic(rootpath string) (FsMagic, error) {
|
|
|
|
return FsMagicUnsupported, nil
|
|
|
|
}
|