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