Update README with virtio config and bridge setup instructions#92
Open
CharleneChar wants to merge 1 commit intosysprog21:mainfrom
Open
Update README with virtio config and bridge setup instructions#92CharleneChar wants to merge 1 commit intosysprog21:mainfrom
CharleneChar wants to merge 1 commit intosysprog21:mainfrom
Conversation
jserv
requested changes
Apr 3, 2026
Contributor
jserv
left a comment
There was a problem hiding this comment.
Check https://cbea.ms/git-commit/ carefully and then enforce the rules.
In Linux driver binding, once a device ID matches one supported by a driver, the driver is bound and its probe() is invoked. If a device is already bound, subsequent binding attempts skip it. With CONFIG_VIRTIO_NET=y, virtio_net binds to the virtio device first, preventing vwifi from binding later. Document how to disable the virtio_net driver so the virtio device can bind to vwifi. Include the expected CONFIG setting in .config and provide menuconfig navigation steps. Also document how to bring up the bridge device (br0) required for the networking setup, enabling traffic flow between the host and virtual machines via virtio-backed interfaces.
Contributor
Author
Updated the commit message to follow the requested rules and force-pushed the branch. No changes were made to the patch itself. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In Linux driver binding, once a device ID matches one of those IDs supported by a driver, the driver is bound and the driver's probe() is invoked. If a device is already bound to a driver, subsequent binding attempts will skip the device. Thus, with CONFIG_VIRTIO_NET=y, virtio_net binds to the virtio device first, causing the virtio device to be skipped when vwifi later attempts to bind.
Add instructions to disable the virtio_net driver so the virtio device can bind to the vwifi driver. Document the expected CONFIG setting in .config and provide menuconfig navigation steps.
Also include steps to bring up the bridge device (br0) required for networking setup, enabling traffic to be ready to flow between the host and virtual machines via virtio-backed interfaces.