You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
372 B
Go
18 lines
372 B
Go
//go:build freebsd
|
|
// +build freebsd
|
|
|
|
package fsutil
|
|
|
|
import (
|
|
"github.com/tonistiigi/fsutil/types"
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func createSpecialFile(path string, mode uint32, stat *types.Stat) error {
|
|
return unix.Mknod(path, mode, mkdev(stat.Devmajor, stat.Devminor))
|
|
}
|
|
|
|
func mkdev(major int64, minor int64) uint64 {
|
|
return unix.Mkdev(uint32(major), uint32(minor))
|
|
}
|