//go:build !linux package storage import "fmt" // FormatAndMount is not supported on non-Linux platforms. func FormatAndMount(req FormatRequest, progress chan<- FormatProgress) (string, error) { return "", fmt.Errorf("storage init is only supported on Linux") } // GetDeviceUUID is not supported on non-Linux platforms. func GetDeviceUUID(devicePath string) (string, error) { return "", fmt.Errorf("storage init is only supported on Linux") } // ReadFstab is not supported on non-Linux platforms. func ReadFstab() (string, error) { return "", fmt.Errorf("storage init is only supported on Linux") }