diff options
author | Thomas Huth <thuth@redhat.com> | 2024-01-18 11:37:59 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-01-19 11:38:32 +0100 |
commit | 1e7886e9e2068a4d83c1a05011cf21e638090ec5 (patch) | |
tree | 7db0d0caf878b5a9d1f48ac4aa9c6f02d2f46eaa /system | |
parent | 2582489fecd6042d69e1fa060ab5ff89f4cef550 (diff) | |
download | qemu-1e7886e9e2068a4d83c1a05011cf21e638090ec5.zip qemu-1e7886e9e2068a4d83c1a05011cf21e638090ec5.tar.gz qemu-1e7886e9e2068a4d83c1a05011cf21e638090ec5.tar.bz2 |
qemu-options: Remove the deprecated -chroot option
It's been marked as deprecated since QEMU 8.1, so it should be fine
to remove this now.
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-ID: <20240118103759.130748-5-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'system')
-rw-r--r-- | system/vl.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/system/vl.c b/system/vl.c index 924356f..c125fb9 100644 --- a/system/vl.c +++ b/system/vl.c @@ -3592,11 +3592,6 @@ void qemu_init(int argc, char **argv) exit(1); } break; - case QEMU_OPTION_chroot: - warn_report("option is deprecated," - " use '-run-with chroot=...' instead"); - os_set_chroot(optarg); - break; case QEMU_OPTION_daemonize: os_set_daemonize(true); break; |