Files
kvm/native_notlinux.go
luckfox-eng29 8fbd6bcf0d Add support for Luckfox PicoKVM
Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
2025-09-16 11:58:09 +08:00

25 lines
485 B
Go

//go:build !linux
package kvm
import (
"fmt"
"os/exec"
)
func startVideoBinary(binaryPath string) (*exec.Cmd, error) {
return nil, fmt.Errorf("not supported")
}
func startAudioBinary(binaryPath string) (*exec.Cmd, error) {
return nil, fmt.Errorf("not supported")
}
func startVpnBinary(binaryPath string) (*exec.Cmd, error) {
return nil, fmt.Errorf("not supported")
}
func startDisplayBinary(binaryPath string) (*exec.Cmd, error) {
return nil, fmt.Errorf("not supported")
}