|
|
b697b4 |
From fcccb5c061b8bbae29de59637c5ad4cf4416281b Mon Sep 17 00:00:00 2001
|
|
|
a83cc2 |
From: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
a83cc2 |
Date: Wed, 4 Dec 2013 18:53:17 +0100
|
|
|
a83cc2 |
Subject: Add support statement to -help output
|
|
|
a83cc2 |
|
|
|
a83cc2 |
RH-Author: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
a83cc2 |
Message-id: <1386183197-27761-1-git-send-email-ehabkost@redhat.com>
|
|
|
a83cc2 |
Patchwork-id: 55994
|
|
|
a83cc2 |
O-Subject: [qemu-kvm RHEL7 PATCH] Add support statement to -help output
|
|
|
a83cc2 |
Bugzilla: 972773
|
|
|
a83cc2 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
a83cc2 |
RH-Acked-by: knoel@redhat.com
|
|
|
a83cc2 |
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
a83cc2 |
|
|
|
a83cc2 |
Add support statement to -help output, reporting direct qemu-kvm usage
|
|
|
a83cc2 |
as unsupported by Red Hat, and advising users to use libvirt instead.
|
|
|
a83cc2 |
|
|
|
a83cc2 |
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
a83cc2 |
---
|
|
|
a83cc2 |
softmmu/vl.c | 9 +++++++++
|
|
|
a83cc2 |
1 file changed, 9 insertions(+)
|
|
|
a83cc2 |
|
|
|
a83cc2 |
diff --git a/softmmu/vl.c b/softmmu/vl.c
|
|
|
b697b4 |
index 620a1f1367..d46b8fb4ab 100644
|
|
|
a83cc2 |
--- a/softmmu/vl.c
|
|
|
a83cc2 |
+++ b/softmmu/vl.c
|
|
|
b697b4 |
@@ -827,9 +827,17 @@ static void version(void)
|
|
|
a83cc2 |
QEMU_COPYRIGHT "\n");
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
|
|
|
a83cc2 |
+static void print_rh_warning(void)
|
|
|
a83cc2 |
+{
|
|
|
a83cc2 |
+ printf("\nWARNING: Direct use of qemu-kvm from the command line is not supported by Red Hat.\n"
|
|
|
a83cc2 |
+ "WARNING: Use libvirt as the stable management interface.\n"
|
|
|
a83cc2 |
+ "WARNING: Some command line options listed here may not be available in future releases.\n\n");
|
|
|
a83cc2 |
+}
|
|
|
a83cc2 |
+
|
|
|
a83cc2 |
static void help(int exitcode)
|
|
|
a83cc2 |
{
|
|
|
a83cc2 |
version();
|
|
|
a83cc2 |
+ print_rh_warning();
|
|
|
a83cc2 |
printf("usage: %s [options] [disk_image]\n\n"
|
|
|
a83cc2 |
"'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
|
|
|
a83cc2 |
error_get_progname());
|
|
|
b697b4 |
@@ -855,6 +863,7 @@ static void help(int exitcode)
|
|
|
a83cc2 |
"\n"
|
|
|
a83cc2 |
QEMU_HELP_BOTTOM "\n");
|
|
|
a83cc2 |
|
|
|
a83cc2 |
+ print_rh_warning();
|
|
|
a83cc2 |
exit(exitcode);
|
|
|
a83cc2 |
}
|
|
|
a83cc2 |
|
|
|
a83cc2 |
--
|
|
|
a83cc2 |
2.27.0
|
|
|
a83cc2 |
|