-
Notifications
You must be signed in to change notification settings - Fork 453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add usb controller #2280
base: main
Are you sure you want to change the base?
feat: add usb controller #2280
Conversation
1420065
to
2ca7685
Compare
647a6a0
to
6feba9c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left some thoughts on supporting only a single USB controller for each supported version based on the configuration maximums in v7 and v8.
86290f9
to
95782f5
Compare
95782f5
to
2be836d
Compare
2be836d
to
2156d69
Compare
2156d69
to
911cae3
Compare
Add the ability to add usb controller on build and modification of virtual machine. Signed-off-by: Jared Burns <[email protected]>
911cae3
to
db44d5d
Compare
} | ||
|
||
default: | ||
return fmt.Errorf("unsupported USB version: %s", usbVersion) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
} | |
default: | |
return fmt.Errorf("unsupported USB version: %s", usbVersion) | |
} | |
} | |
default: | |
return fmt.Errorf("unsupported USB version: %s", usbVersion) | |
} |
return fmt.Errorf("error fetching virtual machine properties: %s", err) | ||
} | ||
|
||
// Check for existing USB controllers |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// Check for existing USB controllers | |
// Check for existing USB controllers. |
return fmt.Errorf("usb_controller is empty") | ||
} | ||
|
||
// Initialize controller presence flags |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// Initialize controller presence flags | |
// Initialize controller presence flags. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor nits, but otherwise looks good.
Description
Add the ability to add usb controller on build and modification of virtual machine.
Acceptance tests
Output from acceptance testing:
Release Note
Release note for CHANGELOG:
References
Closes #620