2014-05-20 00:13:00 +00:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package nodes
|
|
|
|
|
2014-02-17 23:14:30 +00:00
|
|
|
import (
|
|
|
|
"github.com/dotcloud/docker/pkg/libcontainer"
|
|
|
|
"github.com/dotcloud/docker/pkg/libcontainer/devices"
|
|
|
|
)
|
2014-05-20 00:13:00 +00:00
|
|
|
|
2014-05-31 01:30:27 +00:00
|
|
|
func CreateDeviceNodes(rootfs string, nodesToCreate []*devices.Device) error {
|
2014-02-17 23:14:30 +00:00
|
|
|
return libcontainer.ErrUnsupported
|
|
|
|
}
|