2014-05-20 08:13:00 +08:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package nodes
|
|
|
|
|
2014-02-18 07:14:30 +08:00
|
|
|
import (
|
2014-06-24 07:23:51 +08:00
|
|
|
"errors"
|
|
|
|
|
2014-06-10 23:14:16 +08:00
|
|
|
"github.com/docker/libcontainer/devices"
|
2014-02-18 07:14:30 +08:00
|
|
|
)
|
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-06-24 07:23:51 +08:00
|
|
|
return errors.New("Unsupported method")
|
2014-02-18 07:14:30 +08:00
|
|
|
}
|