084c621c66
This also makes sure that devices are pointers to avoid copies Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
12 lines
264 B
Go
12 lines
264 B
Go
// +build !linux
|
|
|
|
package nodes
|
|
|
|
import (
|
|
"github.com/dotcloud/docker/pkg/libcontainer"
|
|
"github.com/dotcloud/docker/pkg/libcontainer/devices"
|
|
)
|
|
|
|
func CreateDeviceNodes(rootfs string, nodesToCreate []*devices.Device) error {
|
|
return libcontainer.ErrUnsupported
|
|
}
|