github.com/rhatdan/docker@v0.7.7-0.20180119204836-47a0dcbcd20a/daemon/graphdriver/driver_unsupported.go (about)

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