diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-09-19 21:26:12 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-09-19 21:26:12 -0300 |
commit | 9a9d947e3c2c73b1c7a36cb6d94c51da8d349291 (patch) | |
tree | fe8aa274e22a0e5805b9f5e9fb2f52e3a5fbbf37 | |
parent | 78f27075d219f0ad683066393978b1bbeb8ad940 (diff) | |
download | kvmx-0.3.0.tar.gz kvmx-0.3.0.tar.bz2 |
Feat: KVMX 0.3.00.3.0
-rw-r--r-- | ChangeLog.md | 8 | ||||
-rw-r--r-- | TODO.md | 3 | ||||
-rwxr-xr-x | kvmx | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/ChangeLog.md b/ChangeLog.md index 68b066e..14e33d4 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,12 @@ # ChangeLog -## 0.3.0 - unreleased +## 0.3.0 - 2024-09-19 + +* Increase the maximum number of shared folders to avoid error in when KVMX + attempts to setup too many 9p folder shares: + + kvm: -drive file=/var/cache/qemu/$guest/box.img,if=virtio,discard=unmap: + PCI: no slot/function available for virtio-blk-pci, all in use or reserved` * Per-mountpoint mode option (ro, rw). @@ -51,6 +51,9 @@ ## Folder sharing +* [ ] Dynamically add PCI bridges depending on the number of shared folders, + avoiding PCI slot exhaustion. + * [ ] Mount/umount/remount commands to manage shared folders. * [ ] Try to umount all sshfs volumes in the host when powering off. @@ -19,7 +19,7 @@ # # Basic parameters -VERSION="0.2.0" +VERSION="0.3.0" BASENAME="`basename $0`" DIRNAME="`dirname $0`" ACTION="$1" |