[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 08/11] docs/about/removed-features: Document removed CLI options f
From: |
Thomas Huth |
Subject: |
[PULL 08/11] docs/about/removed-features: Document removed CLI options from QEMU v3.1 |
Date: |
Sat, 14 Aug 2021 08:09:53 +0200 |
These CLI options had been removed/replaced in QEMU v3.1. Still, some
people might want to update from older versions to the recent QEMU version,
so we should give some recommendations for the replacements in our
documentation.
Message-Id: <20210811084103.74832-4-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
docs/about/removed-features.rst | 67 +++++++++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
diff --git a/docs/about/removed-features.rst b/docs/about/removed-features.rst
index c4b702968e..40d2cc4ffa 100644
--- a/docs/about/removed-features.rst
+++ b/docs/about/removed-features.rst
@@ -79,6 +79,73 @@ Use ``-machine kernel_irqchip=off`` instead.
Use ``-global kvm-pit.lost_tick_policy=discard`` instead.
+``-balloon`` (removed in 3.1)
+'''''''''''''''''''''''''''''
+
+The ``-balloon virtio`` option has been replaced by ``-device virtio-balloon``.
+The ``-balloon none`` option was a no-op and has no replacement.
+
+``-bootp`` (removed in 3.1)
+'''''''''''''''''''''''''''
+
+The ``-bootp /some/file`` argument is replaced by either
+``-netdev user,id=x,bootp=/some/file`` (for pluggable NICs, accompanied with
+``-device ...,netdev=x``), or ``-nic user,bootp=/some/file`` (for on-board
NICs).
+The new syntax allows different settings to be provided per NIC.
+
+``-redir`` (removed in 3.1)
+'''''''''''''''''''''''''''
+
+The ``-redir [tcp|udp]:hostport:[guestaddr]:guestport`` option is replaced
+by either ``-netdev
+user,id=x,hostfwd=[tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport``
+(for pluggable NICs, accompanied with ``-device ...,netdev=x``) or by the
option
+``-nic user,hostfwd=[tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport``
+(for on-board NICs). The new syntax allows different settings to be provided
+per NIC.
+
+``-smb`` (removed in 3.1)
+'''''''''''''''''''''''''
+
+The ``-smb /some/dir`` argument is replaced by either
+``-netdev user,id=x,smb=/some/dir`` (for pluggable NICs, accompanied with
+``-device ...,netdev=x``), or ``-nic user,smb=/some/dir`` (for on-board NICs).
+The new syntax allows different settings to be provided per NIC.
+
+``-tftp`` (removed in 3.1)
+''''''''''''''''''''''''''
+
+The ``-tftp /some/dir`` argument is replaced by either
+``-netdev user,id=x,tftp=/some/dir`` (for pluggable NICs, accompanied with
+``-device ...,netdev=x``), or ``-nic user,tftp=/some/dir`` (for embedded NICs).
+The new syntax allows different settings to be provided per NIC.
+
+``-localtime`` (removed in 3.1)
+'''''''''''''''''''''''''''''''
+
+Replaced by ``-rtc base=localtime``.
+
+``-nodefconfig`` (removed in 3.1)
+'''''''''''''''''''''''''''''''''
+
+Use ``-no-user-config`` instead.
+
+``-rtc-td-hack`` (removed in 3.1)
+'''''''''''''''''''''''''''''''''
+
+Use ``-rtc driftfix=slew`` instead.
+
+``-startdate`` (removed in 3.1)
+'''''''''''''''''''''''''''''''
+
+Replaced by ``-rtc base=date``.
+
+``-vnc ...,tls=...``, ``-vnc ...,x509=...`` & ``-vnc ...,x509verify=...``
+'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
+
+The "tls-creds" option should be used instead to point to a "tls-creds-x509"
+object created using "-object".
+
``-net ...,name=...`` (removed in 5.1)
''''''''''''''''''''''''''''''''''''''
--
2.27.0
- [PULL 00/11] Optional gitlab-CI and doc fixes for -rc4, Thomas Huth, 2021/08/14
- [PULL 01/11] gitlab: exclude sparc-softmmu and riscv32-softmmu from cross builds, Thomas Huth, 2021/08/14
- [PULL 05/11] fuzz: avoid building twice, when running on gitlab, Thomas Huth, 2021/08/14
- [PULL 02/11] gitlab: skip many more targets in windows cross builds, Thomas Huth, 2021/08/14
- [PULL 04/11] tests/qtest/vhost-user-blk-test: Check whether qemu-storage-daemon is available, Thomas Huth, 2021/08/14
- [PULL 03/11] storage-daemon: Add missing build dependency to the vhost-user-blk-test, Thomas Huth, 2021/08/14
- [PULL 09/11] docs/about/removed-features: Document removed HMP commands from QEMU v2.12, Thomas Huth, 2021/08/14
- [PULL 06/11] docs/about/removed-features: Document removed CLI options from QEMU v2.12, Thomas Huth, 2021/08/14
- [PULL 07/11] docs/about/removed-features: Document removed CLI options from QEMU v3.0, Thomas Huth, 2021/08/14
- [PULL 08/11] docs/about/removed-features: Document removed CLI options from QEMU v3.1,
Thomas Huth <=
- [PULL 10/11] docs/about/removed-features: Document removed devices from older QEMU versions, Thomas Huth, 2021/08/14
- [PULL 11/11] docs/about/removed-features: Document removed machines from older QEMU versions, Thomas Huth, 2021/08/14
- Re: [PULL 00/11] Optional gitlab-CI and doc fixes for -rc4, Peter Maydell, 2021/08/16
- Re: [PULL 00/11] Optional gitlab-CI and doc fixes for -rc4, Thomas Huth, 2021/08/17