Skip to content

Commit

Permalink
ref(name): renamed to bao-virtio-dm
Browse files Browse the repository at this point in the history
Signed-off-by: João Peixoto <[email protected]>
  • Loading branch information
joaopeixoto13 committed Sep 25, 2024
1 parent 87d412e commit 9ab1fb5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "bao-virtio"
name = "bao-virtio-dm"
version = "0.1.0"
edition = "2021"
authors = ["João Peixoto <[email protected]>"]
Expand Down Expand Up @@ -34,4 +34,4 @@ vhost = { git = "https://github.com/joaopeixoto13/vhost", branch = "vhost-user-f
virtio-queue = { git = "https://github.com/joaopeixoto13/vm-virtio", branch = "bao-hypervisor" }
virtio-device = { git = "https://github.com/joaopeixoto13/vm-virtio", branch = "bao-hypervisor" }
virtio-blk = { git = "https://github.com/joaopeixoto13/vm-virtio", branch = "bao-hypervisor" }
virtio-vsock = { git = "https://github.com/joaopeixoto13/vm-virtio", branch = "bao-hypervisor" }
virtio-vsock = { git = "https://github.com/joaopeixoto13/vm-virtio", branch = "bao-hypervisor" }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To begin utilizing VirtIO device support in Bao Hypervisor, follow these steps:
1. Clone this repository to your local environment.

```
git clone [email protected]:joaopeixoto13/bao-virtio.git
git clone [email protected]:joaopeixoto13/bao-virtio-dm.git
```

2. Build the source code (e.g. Aarch64):
Expand Down
2 changes: 1 addition & 1 deletion src/virtio/src/block/virtio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ devices:
2. Launch the **device model** with VirtIO Block device:

```
nohup bao-virtio --config /PATH/TO/YOUR/config-virtio-block.yaml > /etc/bao-virtio.log 2>&1 &
nohup bao-virtio-dm --config /PATH/TO/YOUR/config-virtio-block.yaml > /etc/bao-virtio-dm.log 2>&1 &
```
2 changes: 1 addition & 1 deletion src/virtio/src/fs/vhost_user/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ nohup virtiofsd --socket-path=/root/Fs.sock --shared-dir /mnt --tag=myfs --annou
4. Launch the **device model** with the vhost-user virtual filesystem frontend device:

```
nohup bao-virtio --config /PATH/TO/YOUR/config-virtio-fs.yaml > /etc/bao-virtio.log 2>&1 &
nohup bao-virtio-dm --config /PATH/TO/YOUR/config-virtio-fs.yaml > /etc/bao-virtio-dm.log 2>&1 &
```
2 changes: 1 addition & 1 deletion src/virtio/src/net/virtio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ifconfig
4. **Launch the device model with the virtio-net device**: To launch the device model in the background type:

```
nohup bao-virtio --config /PATH/TO/YOUR/config-virtio-net.yaml > /etc/bao-virtio.log 2>&1 &
nohup bao-virtio-dm --config /PATH/TO/YOUR/config-virtio-net.yaml > /etc/bao-virtio-dm.log 2>&1 &
```

In the **Frontend VM**, you can use the command `ethtool` to verify the virtual network interface (e.g. `eth0`) configuration:
Expand Down
2 changes: 1 addition & 1 deletion src/virtio/src/vsock/vhost/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ devices:
2. Launch the **device model** with vhost vsock frontend device:

```
nohup bao-virtio --config /PATH/TO/YOUR/config-virtio-vsock.yaml > /etc/bao-virtio.log 2>&1 &
nohup bao-virtio-dm --config /PATH/TO/YOUR/config-virtio-vsock.yaml > /etc/bao-virtio-dm.log 2>&1 &
```

0 comments on commit 9ab1fb5

Please sign in to comment.