Skip to content

Commit 7526737

Browse files
committed
qemu on windows
1 parent 4041bb8 commit 7526737

File tree

2 files changed

+41
-19
lines changed

2 files changed

+41
-19
lines changed

pkg/drivers/qemu/qemu.go

+38-19
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import (
2121
"bytes"
2222
"encoding/json"
2323
"fmt"
24+
"io"
2425
"math/rand"
2526
"net"
2627
"os"
@@ -169,21 +170,23 @@ func checkPid(pid int) error {
169170
}
170171

171172
func (d *Driver) GetState() (state.State, error) {
172-
if _, err := os.Stat(d.pidfilePath()); err != nil {
173-
return state.Stopped, nil
174-
}
175-
p, err := os.ReadFile(d.pidfilePath())
176-
if err != nil {
177-
return state.Error, err
178-
}
179-
pid, err := strconv.Atoi(strings.TrimSpace(string(p)))
180-
if err != nil {
181-
return state.Error, err
182-
}
183-
if err := checkPid(pid); err != nil {
184-
// No pid, remove pidfile
185-
os.Remove(d.pidfilePath())
186-
return state.Stopped, nil
173+
if runtime.GOOS != "windows" {
174+
if _, err := os.Stat(d.pidfilePath()); err != nil {
175+
return state.Stopped, nil
176+
}
177+
p, err := os.ReadFile(d.pidfilePath())
178+
if err != nil {
179+
return state.Error, err
180+
}
181+
pid, err := strconv.Atoi(strings.TrimSpace(string(p)))
182+
if err != nil {
183+
return state.Error, err
184+
}
185+
if err := checkPid(pid); err != nil {
186+
// No pid, remove pidfile
187+
os.Remove(d.pidfilePath())
188+
return state.Stopped, nil
189+
}
187190
}
188191
ret, err := d.RunQMPCommand("query-status")
189192
if err != nil {
@@ -392,6 +395,10 @@ func (d *Driver) Start() error {
392395
// On Linux, enable the Kernel Virtual Machine accelerator.
393396
startCmd = append(startCmd,
394397
"-accel", "kvm")
398+
//} else if runtime.GOOS == "windows" {
399+
// // On Windows, enable the WHPX (Hyper-V) accelerator.
400+
// startCmd = append(startCmd,
401+
// "-accel", "whpx")
395402
}
396403

397404
startCmd = append(startCmd,
@@ -424,8 +431,10 @@ func (d *Driver) Start() error {
424431
return fmt.Errorf("unknown network: %s", d.Network)
425432
}
426433

427-
startCmd = append(startCmd,
428-
"-daemonize")
434+
if runtime.GOOS != "windows" {
435+
startCmd = append(startCmd,
436+
"-daemonize")
437+
}
429438

430439
if d.CloudConfigRoot != "" {
431440
startCmd = append(startCmd,
@@ -452,7 +461,11 @@ func (d *Driver) Start() error {
452461
startCmd = append([]string{d.SocketVMNetPath, d.Program}, startCmd...)
453462
}
454463

455-
if stdout, stderr, err := cmdOutErr(startProgram, startCmd...); err != nil {
464+
startFunc := cmdOutErr
465+
if runtime.GOOS == "windows" {
466+
startFunc = cmdStart
467+
}
468+
if stdout, stderr, err := startFunc(startProgram, startCmd...); err != nil {
456469
fmt.Printf("OUTPUT: %s\n", stdout)
457470
fmt.Printf("ERROR: %s\n", stderr)
458471
return err
@@ -519,6 +532,12 @@ func cmdOutErr(cmdStr string, args ...string) (string, string, error) {
519532
return stdoutStr, stderrStr, err
520533
}
521534

535+
func cmdStart(cmdStr string, args ...string) (string, string, error) {
536+
cmd := exec.Command(cmdStr, args...)
537+
log.Debugf("executing: %s %s", cmdStr, strings.Join(args, " "))
538+
return "", "", cmd.Start()
539+
}
540+
522541
func (d *Driver) Stop() error {
523542
if _, err := d.RunQMPCommand("system_powerdown"); err != nil {
524543
return err
@@ -791,7 +810,7 @@ func WaitForTCPWithDelay(addr string, duration time.Duration) error {
791810
continue
792811
}
793812
defer conn.Close()
794-
if _, err := conn.Read(make([]byte, 1)); err != nil {
813+
if _, err := conn.Read(make([]byte, 1)); err != nil && err != io.EOF {
795814
time.Sleep(duration)
796815
continue
797816
}

pkg/minikube/registry/drvs/qemu2/qemu2.go

+3
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ func qemuFirmwarePath(customPath string) (string, error) {
7070
if customPath != "" {
7171
return customPath, nil
7272
}
73+
if runtime.GOOS == "windows" {
74+
return "C:\\Program Files\\qemu\\share\\edk2-x86_64-code.fd", nil
75+
}
7376
arch := runtime.GOARCH
7477
// For macOS, find the correct brew installation path for qemu firmware
7578
if runtime.GOOS == "darwin" {

0 commit comments

Comments
 (0)