qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] info version


From: Fabrice Bellard
Subject: Re: [Qemu-devel] info version
Date: Sun, 10 Oct 2004 17:46:03 +0200
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624

Applied. For the boot option, I prefer to wait.

Fabrice.

Anand Kumria wrote:
Hi,

I regularly have a number of different versions of qemu installed. The
monitor display the version number on the first line but, for me, it has
frequently scrolled away.

The attached patch is a small 'info version' command.

Regards,
Anand


diff -X dont-diff -urN upstream/monitor.c my-versions/monitor.c
--- upstream/monitor.c  2004-10-10 04:08:01.000000000 +1000
+++ my-versions/monitor.c       2004-10-10 18:43:45.000000000 +1000
@@ -190,6 +190,11 @@
     cmd->handler();
 }
+static void do_info_version(void)
+{
+  term_printf("%s\n", QEMU_VERSION);
+}
+
 static void do_info_network(void)
 {
     int i, j;
@@ -864,6 +869,8 @@
 };
static term_cmd_t info_cmds[] = {
+    { "version", "", do_info_version,
+      "", "show the version of qemu" },
     { "network", "", do_info_network,
       "", "show the network state" },
     { "block", "", do_info_block,




_______________________________________________
Qemu-devel mailing list
address@hidden
http://lists.nongnu.org/mailman/listinfo/qemu-devel








reply via email to

[Prev in Thread] Current Thread [Next in Thread]