Merge pull request #20540 from victortoso/usb-host-passthrough

qemu: add usb host passthrough
This commit is contained in:
openshift-merge-bot[bot]
2023-11-13 16:03:30 +00:00
committed by GitHub
15 changed files with 260 additions and 0 deletions

View File

@ -448,6 +448,9 @@ func (m *MacMachine) Set(name string, opts machine.SetOptions) ([]error, error)
}
}
}
if opts.USBs != nil {
setErrors = append(setErrors, errors.New("changing USBs not supported for applehv machines"))
}
// Write the machine config to the filesystem
err = m.writeConfig()