github.com/jiasir/docker@v1.3.3-0.20170609024000-252e610103e7/daemon/graphdriver/driver_unsupported.go (about)

     1  // +build !linux,!windows,!freebsd,!solaris
     2  
     3  package graphdriver
     4  
     5  var (
     6  	// Slice of drivers that should be used in an order
     7  	priority = []string{
     8  		"unsupported",
     9  	}
    10  )
    11  
    12  // GetFSMagic returns the filesystem id given the path.
    13  func GetFSMagic(rootpath string) (FsMagic, error) {
    14  	return FsMagicUnsupported, nil
    15  }