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